From 8c4663c4ef6bcb8bb46ca4c6073fc516b60d7880 Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Tue, 16 Sep 2025 09:56:50 +0200 Subject: [PATCH] Remove unnecessary mouse interaction handling in VideoEditor when in project view mode, streamlining the mouse callback functionality. --- croppa/main.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/croppa/main.py b/croppa/main.py index d8b8ff2..2f80b9e 100644 --- a/croppa/main.py +++ b/croppa/main.py @@ -1740,10 +1740,6 @@ class VideoEditor: def mouse_callback(self, event, x, y, flags, _): """Handle mouse events""" - # Handle project view mode - no mouse interaction needed - if self.project_view_mode and self.project_view: - return - # Handle timeline interaction (not for images) if self.timeline_rect and not self.is_image_mode: bar_x_start, bar_y, bar_width, bar_height = self.timeline_rect