We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Both G3 and G2 support hotkey customisation for the builtin .glyphsTool plugins via the user defaults:
.glyphsTool
$ defaults write com.GeorgSeifert.Glyphs3 AnnotationTool.Hotkey 'q'
I think it's nice to have it supported also in the Python wrapper by default.
def trigger(self): return Glyphs.defaults['.'.join((type(self).__name__.replace('NSKVONotifying_', ''), 'Hotkey'))] or self.keyboardShortcut
Replacing the trigger() method in plugins.py like above will do.
trigger()
plugins.py
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Both G3 and G2 support hotkey customisation for the builtin
.glyphsTool
plugins via the user defaults:$ defaults write com.GeorgSeifert.Glyphs3 AnnotationTool.Hotkey 'q'
I think it's nice to have it supported also in the Python wrapper by default.
Replacing the
trigger()
method inplugins.py
like above will do.The text was updated successfully, but these errors were encountered: