Shutdown is delayed further now

This commit is contained in:
nathan 2016-02-13 19:04:15 +01:00
parent 639ae30f45
commit 2e692733b3

View File

@ -200,6 +200,11 @@ class GtkSupport {
started = false;
// put it in a NEW dispatch event (so that we cleanup AFTER this one is finished)
dispatch(new Runnable() {
@Override
public
void run() {
new Thread(new Runnable() {
@Override
public
@ -209,4 +214,6 @@ class GtkSupport {
}
}).run();
}
});
}
}