Open bandesz opened 1 week ago
This is causing the issue, press_tab
is called in rename_command_created_handler
without checking the OS.
def press_tab(times=1):
return press_key(thomasa88lib.win.input.VK_TAB, times)
E.g. this solves it:
def press_tab(times=1):
if IS_WINDOWS:
return press_key(thomasa88lib.win.input.VK_TAB, times)
return False
I get the following error after I create e.g. a sketch:
If it matters:
OS: macOS Sonoma 14.6.1