Default the PropertyChangedDispatcher to Execute.OnUIThread

This commit is contained in:
Antony Male 2014-04-22 14:24:26 +01:00
parent 100c344436
commit 1de019aa48
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ namespace Stylet
public static SynchronizationContext SynchronizationContext;
private static bool? inDesignMode;
public static Action<Action> DefaultPropertyChangedDispatcher = a => a();
public static Action<Action> DefaultPropertyChangedDispatcher = Execute.OnUIThread;
public static void OnUIThread(Action action)
{