What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

Beta 570, Application.Current.Dispatcher.Invoke freeze DB, why?

taozi

Community Developer
Joined
Nov 10, 2012
Messages
163
Reaction score
1
Before beta 570, my plugin ItemCount worked smoothly, after I updated DB to Beta 570, it stopped working, freezed DB with last message as:
Code:
INFO  Logger [Trinity 2.13.38] Waiting for Navigation Server...
it seems my following code:
Code:
 Application.Current.Dispatcher.Invoke(() =>
            {
                boxText0.Text = "Counting... Please wait...";
            });
freezes DB, this code basically do a UI update from other threads, can somebody tell me what I should do to fix this?
 
Back
Top