Issue 53: Missing shortcuts
Status:  Accepted
Owner:
Project Member Reported by roberto.alsina, Feb 15, 2010
As of r266 many "menu" actions have no shortcuts, and they should.

Example: font size could be increased via ctrl+ as in web browsers.
Apr 8, 2011
#1 jessca...@gmail.com
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)