File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Tvl.VisualStudio.MouseFastScroll.IntegrationTests Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -31,13 +31,13 @@ private static Dispatcher CurrentApplicationDispatcher
31
31
=> Application . Current . Dispatcher ;
32
32
33
33
protected static void BeginInvokeOnUIThread ( Action action )
34
- => CurrentApplicationDispatcher . BeginInvoke ( action ) ;
34
+ => CurrentApplicationDispatcher . BeginInvoke ( action , DispatcherPriority . Background ) ;
35
35
36
36
protected static void InvokeOnUIThread ( Action action )
37
- => CurrentApplicationDispatcher . Invoke ( action ) ;
37
+ => CurrentApplicationDispatcher . Invoke ( action , DispatcherPriority . Background ) ;
38
38
39
39
protected static T InvokeOnUIThread < T > ( Func < T > action )
40
- => CurrentApplicationDispatcher . Invoke ( action ) ;
40
+ => CurrentApplicationDispatcher . Invoke ( action , DispatcherPriority . Background ) ;
41
41
42
42
protected static TInterface GetGlobalService < TService , TInterface > ( )
43
43
where TService : class
You can’t perform that action at this time.
0 commit comments