-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Add a quit_all key to the default keymap #4921
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1158,7 +1158,8 @@ def validate_cycler(s): | |
'keymap.pan': [['p'], validate_stringlist], | ||
'keymap.zoom': [['o'], validate_stringlist], | ||
'keymap.save': [['s', 'ctrl+s'], validate_stringlist], | ||
'keymap.quit': [['ctrl+w', 'cmd+w'], validate_stringlist], | ||
'keymap.quit': [['ctrl+w', 'cmd+w', 'q'], validate_stringlist], | ||
'keymap.quit_all': [['W', 'cmd+W', 'Q'], validate_stringlist], | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is it ok to leave this change as it is? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't see mayor problem with that @tacaswell what do you think? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think we need 3 keys for the same command. How about removing the "W" and "Q" and just having |
||
'keymap.grid': [['g'], validate_stringlist], | ||
'keymap.yscale': [['l'], validate_stringlist], | ||
'keymap.xscale': [['k', 'L'], validate_stringlist], | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we are going to leave it only inside
toolmanager
, please remove it frombackend_bases