Fix sketcher mode handling to prevent unintended line creation during drag operations

Major changes:
- Fixed right-click handler to directly set mode to NONE instead of relying on main app signal handling
- Added safety checks in left-click handler to prevent drawing when no draggable point is found in NONE mode
- Enhanced mode compatibility by treating Python None as SketchMode.NONE in set_mode() method
- Added comprehensive debug logging for mode changes and interaction state tracking
- Resolved integration issue where persistent constraint modes were prematurely reset by main app
- Ensured point dragging is only enabled in NONE mode, preventing accidental polyline creation

This fixes the reported issue where deactivating the line tool would still create lines when dragging,
and ensures proper mode transitions between drawing tools and selection/drag mode.
This commit is contained in:
bklronin
2025-08-16 22:30:18 +02:00
parent 54261bb8fd
commit 11d053fda4
886 changed files with 168708 additions and 51 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -31,10 +31,10 @@ def create_3D(lines, z_pos):
start, end = coordinate2d
xs, ys = start
coordinate3d_start_orig = xs, -ys, z_pos
coordinate3d_start_orig = xs, ys, z_pos
xe, ye = end
coordinate3d_end_orig = xe, -ye, z_pos
coordinate3d_end_orig = xe, ye, z_pos
line3d_orig = coordinate3d_start_orig, coordinate3d_end_orig