From 092dbcf4c9f41fe9dbfe7003051adcefb6ba0ff4 Mon Sep 17 00:00:00 2001 From: Vitali Graf Date: Thu, 29 May 2025 20:14:37 +0200 Subject: [PATCH] =?UTF-8?q?Der=20Handcursor=20wird=20bei=20Seiten=20in=20V?= =?UTF-8?q?ollgr=C3=B6=C3=9Fe=20angezeigt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/MainWindow.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/MainWindow.py b/src/MainWindow.py index f96463c..f608d5d 100644 --- a/src/MainWindow.py +++ b/src/MainWindow.py @@ -221,6 +221,7 @@ class MainWindow(QMainWindow): self.fullsize_label = QLabel() self.fullsize_label.setObjectName("fullsize_current_page") self.fullsize_label.setAlignment(Qt.AlignmentFlag.AlignHCenter) + self.fullsize_label.setCursor(QCursor(Qt.CursorShape.OpenHandCursor)) self.ui.verticalLayout_3.addWidget(self.fullsize_label) # Drag-to-Scroll Events für das große Bild einrichten @@ -496,7 +497,7 @@ class MainWindow(QMainWindow): if event.button() == Qt.MouseButton.LeftButton: self.is_dragging = False self.last_drag_position = None - fullsize_label.setCursor(QCursor(Qt.CursorShape.ArrowCursor)) + fullsize_label.setCursor(QCursor(Qt.CursorShape.OpenHandCursor)) def closeEvent(self, event): """Wird beim Schließen der Anwendung aufgerufen."""