| Issue 53: | Missing shortcuts | |
| 1 person starred this issue and may be notified of changes. | Back to list |
As of r266 many "menu" actions have no shortcuts, and they should. Example: font size could be increased via ctrl+ as in web browsers. |
| Issue 53: | Missing shortcuts | |
| 1 person starred this issue and may be notified of changes. | Back to list |
As of r266 many "menu" actions have no shortcuts, and they should. Example: font size could be increased via ctrl+ as in web browsers. |
I have added some code in the MainWidget class where all the shortcuts are defined that allows increasing/decreasing the font with Ctrl++/Ctrl+-: self.sc14 = QtGui.QShortcut(QtGui.QKeySequence(self.tr("Ctrl++","Larger")), self); self.sc14.activated.connect(self.editor.larger) self.sc15 = QtGui.QShortcut(QtGui.QKeySequence(self.tr("Ctrl+-","Smaller")), self); self.sc15.activated.connect(self.editor.smaller)