Sat, 07 Oct 2017 10:49:15 +0200
Merged with Tobias changes.
--- a/QScintilla/Editor.py Sat Oct 07 10:39:42 2017 +0200 +++ b/QScintilla/Editor.py Sat Oct 07 10:49:15 2017 +0200 @@ -127,6 +127,8 @@ AttributeProtectedID = 8 AttributePrivateID = 9 EnumID = 10 + KeywordsID = 11 + ModuleID = 12 FromDocumentID = 99 @@ -520,6 +522,10 @@ UI.PixmapCache.getPixmap("attribute_private.png")) self.registerImage(self.EnumID, UI.PixmapCache.getPixmap("enum.png")) + self.registerImage(self.KeywordsID, + UI.PixmapCache.getPixmap("keywords.png")) + self.registerImage(self.ModuleID, + UI.PixmapCache.getPixmap("module.png")) self.registerImage(self.FromDocumentID, UI.PixmapCache.getPixmap("editor.png"))