removing test message

This commit is contained in:
vb
2025-10-25 23:32:37 +02:00
parent 2e5bda4531
commit b417803472
4 changed files with 4 additions and 8 deletions

View File

@@ -189,11 +189,9 @@ class GUI:
self._selectionMode = not self._selectionMode
if self._selectionMode:
self._root.config(cursor="crosshair")
messagebox.showinfo("Selection Mode", "Selection mode enabled. Click and drag to select area, then right-click for manipulation options.")
else:
self._root.config(cursor="")
self._clearSelection()
messagebox.showinfo("Selection Mode", "Selection mode disabled.")
def _onMouseClick(self, event) -> None:
"""Handle mouse click for selection."""
@@ -243,7 +241,6 @@ class GUI:
selection_coords["left"], selection_coords["top"],
selection_coords["right"], selection_coords["bottom"]
)
messagebox.showinfo("Selection", "Area selected! Right-click for manipulation options.")
def _onRightClick(self, event) -> None:
"""Handle right-click to show context menu for manipulation options."""