1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00
This commit is contained in:
Reinhard Pointner 2016-10-24 20:20:13 +08:00
parent c2fc4c2913
commit e2d9b9dd81

View File

@ -372,7 +372,7 @@ public final class SwingUI {
// run spawn new EDT and block current EDT
SecondaryLoop secondaryLoop = Toolkit.getDefaultToolkit().getSystemEventQueue().createSecondaryLoop();
SwingWorker<T, Void> worker = newSwingWorker(supplier, null, null, () -> secondaryLoop.exit());
SwingWorker<T, Void> worker = newSwingWorker(supplier, null, null, secondaryLoop::exit);
worker.execute();
// wait for worker to finish without blocking the EDT