Mon, 15 Dec 2014 19:20:07 +0100
Removed the Indent and Unindent action from the edit toolbar because these are readily available via the keyboard (tab and shift-tab).
ViewManager/ViewManager.py | file | annotate | diff | comparison | revisions |
--- a/ViewManager/ViewManager.py Sat Dec 13 11:43:31 2014 +0100 +++ b/ViewManager/ViewManager.py Mon Dec 15 19:20:07 2014 +0100 @@ -2757,15 +2757,14 @@ tb.addAction(self.pasteAct) tb.addAction(self.deleteAct) tb.addSeparator() - tb.addAction(self.indentAct) - tb.addAction(self.unindentAct) - tb.addSeparator() tb.addAction(self.commentAct) tb.addAction(self.uncommentAct) tb.addAction(self.toggleCommentAct) toolbarManager.addToolBar(tb, tb.windowTitle()) toolbarManager.addAction(self.smartIndentAct, tb.windowTitle()) + toolbarManager.addAction(self.indentAct, tb.windowTitle()) + toolbarManager.addAction(self.unindentAct, tb.windowTitle()) return tb