[SOLVED] Application.Update broken?

Answered Closed
0
0

With 1.2.52/53 the following code no longer works, nor does it throw any kind of error, I just never get into the action block:

Application.Update(this, () =>
{
     //I never get here
}
  • You must to post comments
Best Answer
0
0

Hi Nic,

first of all sorry for that. A new build (1.2.54) that has just been uploaded fixes that issue.

We added Application.RunInContext() and consolidated the code behind it,
because some controls used Application references and if they are running from an out-of-bound thread
without a context switch – like event handlers – their context was stale.

Now it handles also nested out-of-bound updates on different threads restoring
the previous context upon exiting.

Best regards
Frank

  • You must to post comments
0
0

Thanks Frank – It is working.

Nic

  • You must to post comments
Showing 2 results