Versuch den Interrupt von dispose() zu verhindern

This commit is contained in:
ngb
2022-08-01 10:07:53 +02:00
parent 8e93866b5e
commit 537527e525

View File

@@ -533,7 +533,9 @@ public class Zeichenmaschine extends Constants {
running = false;
terminateImediately = true;
quitAfterShutdown = true;
mainThread.interrupt();
if( state != Options.AppState.QUITING ) {
mainThread.interrupt();
}
} else {
quit(true);
}