Skip to content

Commit 4b25c9e

Browse files
committed
fix bug with cursor
1 parent 7baf92b commit 4b25c9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

component_sketch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ def on_wire_body_leave(self, *_):
345345
"""
346346
Event handler for when the mouse leaves the wire body.
347347
"""
348-
if not self.drag_selector and not self.wire_drag_data["creating_wire"]:
348+
if not self.drag_selector and not self.wire_drag_data["creating_wire"] and not self.delete_mode_active:
349349
self.canvas.config(cursor="arrow")
350350

351351
def on_wire_body_click(self, event, wire_id) -> None:

0 commit comments

Comments
 (0)