Thu, 15 May 2014 18:45:31 +0200
Fixed another silly issue in the editor.
QScintilla/Editor.py | file | annotate | diff | comparison | revisions |
--- a/QScintilla/Editor.py Wed May 14 18:49:47 2014 +0200 +++ b/QScintilla/Editor.py Thu May 15 18:45:31 2014 +0200 @@ -4653,7 +4653,8 @@ self.menuActs["NewSplit"].setIcon( UI.PixmapCache.getIcon("splitVertical.png")) - self.menuActs["Tools"].setEnabled(not self.toolsMenu.isEmpty()) + if not self.isResourcesFile: + self.menuActs["Tools"].setEnabled(not self.toolsMenu.isEmpty()) self.showMenu.emit("Main", self.menu, self)