removing test message
This commit is contained in:
@@ -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."""
|
||||
|
||||
Reference in New Issue
Block a user