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,13 +200,20 @@ class GtkSupport {
started = false;
new Thread(new Runnable() {
// put it in a NEW dispatch event (so that we cleanup AFTER this one is finished)
dispatch(new Runnable() {
@Override
public
void run() {
// this should happen in a new thread
gtkDispatchThread.interrupt();
new Thread(new Runnable() {
@Override
public
void run() {
// this should happen in a new thread
gtkDispatchThread.interrupt();
}
}).run();
}
}).run();
});
}
}