most likely to do with the way I coded the hotkey for the ToggleFollowSelectedTarget:
# follow selected target
if key == FollowSelectedTargetHotKey[1]:
if FollowSelectedTargetHotKey[0]:
from Pagelayout import ToggleFollowSelectedTarget
ToggleFollowSelectedTarget( None )
args.Handled = True
The highlighted in yellow says no need to check for this key anymore
|