1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Checking for "None" drag handlers to prevent errors when clicking certain stacks.

This commit is contained in:
Joe R 2022-07-26 21:35:44 -04:00
parent fbcd5d4ec8
commit b5a305340d

View file

@ -1123,7 +1123,7 @@ class Stack:
if start_drag:
# this handler may start a drag operation
r = handler(event)
if r <= 0:
if r is not None and r <= 0:
sound = r == 0
self.startDrag(event, sound=sound)
else: