mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 10:22:45 -04:00
Josh: made some changes to the breakpoint code
This commit is contained in:
parent
39468f5a1a
commit
ca36b0fe57
@ -2793,8 +2793,10 @@ class HotkeyBreaker:
|
||||
return
|
||||
else:
|
||||
if not isinstance(breakKeys, (list,tuple)):
|
||||
breakKeys = (breakKeys,)
|
||||
for key in breakKeys:
|
||||
keys = (breakKeys,)
|
||||
else:
|
||||
keys = tuple(breakKeys)
|
||||
for key in keys:
|
||||
if self.breakKeys.pop(key,False):
|
||||
import pdb;pdb.set_trace()
|
||||
return
|
||||
|
Loading…
x
Reference in New Issue
Block a user