From 7f2a165d90fefd954a4d2eb3b8993bc2198194a0 Mon Sep 17 00:00:00 2001 From: "Christian F." Date: Thu, 26 Oct 2023 09:47:08 +0200 Subject: [PATCH] WIP --- src/main/java/mediathek/mainwindow/MediathekGui.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/mediathek/mainwindow/MediathekGui.java b/src/main/java/mediathek/mainwindow/MediathekGui.java index b4587caf14..2c1880d67d 100644 --- a/src/main/java/mediathek/mainwindow/MediathekGui.java +++ b/src/main/java/mediathek/mainwindow/MediathekGui.java @@ -1036,6 +1036,8 @@ public boolean quitApplication(boolean shouldDownloadAndQuit) { setShutdownRequested(dialogBeenden.isShutdownRequested()); } + setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR)); + if (automaticFilmlistUpdate != null) automaticFilmlistUpdate.close(); @@ -1105,6 +1107,8 @@ public boolean quitApplication(boolean shouldDownloadAndQuit) { logger.info("Cleanup Lucene index."); cleanupLuceneIndex(); + setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR)); + if (isShutdownRequested()) { logger.info("Requesting computer shutdown."); shutdownComputer();