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."""