Removed the Indent and Unindent action from the edit toolbar because these are readily available via the keyboard (tab and shift-tab).

Mon, 15 Dec 2014 19:20:07 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Mon, 15 Dec 2014 19:20:07 +0100
changeset 3970
c16a52652af5
parent 3968
19d287451e44
child 3971
b78b17dbdcef

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
         

eric ide

mercurial