Skip to content
This repository has been archived by the owner on Oct 4, 2021. It is now read-only.

Commit

Permalink
[Git] No need to call FileService.ThawEvents on UI thread
Browse files Browse the repository at this point in the history
The FileService.ThawEvents method will now handle being called
from a background thread.
  • Loading branch information
mrward committed Jun 13, 2018
1 parent 85e867f commit 98a2508
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,7 @@ protected override void Run ()
}
finally {
monitor.Dispose ();
Runtime.RunInMainThread (delegate {
FileService.ThawEvents ();
});
FileService.ThawEvents ();
}
});
}
Expand Down

0 comments on commit 98a2508

Please sign in to comment.