Two additional autocomplete icons.

Fri, 06 Oct 2017 20:09:16 +0200

author
T.Rzepka <Tobias.Rzepka@gmail.com>
date
Fri, 06 Oct 2017 20:09:16 +0200
changeset 5894
0d4431926611
parent 5892
475cc7f3a5fb
child 5895
7fd049b97081

Two additional autocomplete icons.

QScintilla/Editor.py file | annotate | diff | comparison | revisions
icons/default/keywords.png file | annotate | diff | comparison | revisions
--- a/QScintilla/Editor.py	Fri Oct 06 18:52:20 2017 +0200
+++ b/QScintilla/Editor.py	Fri Oct 06 20:09:16 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"))
Binary file icons/default/keywords.png has changed

eric ide

mercurial