Keyboard hotkey to un-select operators?

Hello,

Is there a hotkey like “ctrl + a” to de-select all selected operators?

If not, is it possible to associate/configure a hotkey ?

Thanks

Hi @sdtouchdd,

i don’t think there is direct method for this. You could:

# get the owner of the current pane
curOp = ui.panes.current.owner
# loop through selected operators and deselect
for i in curOp.selectedChildren:
	i.selected = False

There will always be one current operator (green outline).

This script could now be called with a Keyboard DAT callback.

cheers
Markus

That’s perfect thanks