Preferences/ConfigurationPages/EditorStylesPage.py

changeset 942
1d2a6b8509c6
parent 939
10d3a201cd27
child 945
8cd4d08fa9f6
diff -r 0f5461fe69d4 -r 1d2a6b8509c6 Preferences/ConfigurationPages/EditorStylesPage.py
--- a/Preferences/ConfigurationPages/EditorStylesPage.py	Thu Mar 10 17:40:11 2011 +0100
+++ b/Preferences/ConfigurationPages/EditorStylesPage.py	Thu Mar 10 19:07:05 2011 +0100
@@ -276,7 +276,7 @@
         """
         self.editorColours["CaretLineBackground"] = \
             self.selectColour(self.caretlineBackgroundButton, 
-                self.editorColours["CaretLineBackground"])
+                self.editorColours["CaretLineBackground"], True)
         
     @pyqtSlot()
     def on_selectionForegroundButton_clicked(self):
@@ -294,7 +294,7 @@
         """
         self.editorColours["SelectionBackground"] = \
             self.selectColour(self.selectionBackgroundButton, 
-                self.editorColours["SelectionBackground"])
+                self.editorColours["SelectionBackground"], True)
         
     @pyqtSlot()
     def on_currentLineMarkerButton_clicked(self):
@@ -303,7 +303,7 @@
         """
         self.editorColours["CurrentMarker"] = \
             self.selectColour(self.currentLineMarkerButton, 
-                self.editorColours["CurrentMarker"])
+                self.editorColours["CurrentMarker"], True)
         
     @pyqtSlot()
     def on_errorMarkerButton_clicked(self):
@@ -312,7 +312,7 @@
         """
         self.editorColours["ErrorMarker"] = \
             self.selectColour(self.errorMarkerButton, 
-                self.editorColours["ErrorMarker"])
+                self.editorColours["ErrorMarker"], True)
         
     @pyqtSlot()
     def on_marginsForegroundButton_clicked(self):

eric ide

mercurial