Fixed issue with new dispatch methods + SWT

This commit is contained in:
nathan 2016-10-04 00:21:29 +02:00
parent af131eb805
commit 049d5b2109

View File

@ -25,7 +25,7 @@ class Swt {
public static
void dispatch(final Runnable runnable) {
org.eclipse.swt.widgets.Display.getCurrent()
.asyncExec(runnable);
.syncExec(runnable);
}
public static