eric7/Preferences/ConfigurationPages/ConfigurationPageBase.py

branch
eric7
changeset 8869
3dbb04832c21
parent 8755
30f52c9d5153
child 8881
54e42bc2437a
--- a/eric7/Preferences/ConfigurationPages/ConfigurationPageBase.py	Tue Dec 28 15:48:39 2021 +0100
+++ b/eric7/Preferences/ConfigurationPages/ConfigurationPageBase.py	Tue Dec 28 16:36:53 2021 +0100
@@ -86,7 +86,7 @@
         colDlg = QColorDialog(self)
         if hasAlpha:
             colDlg.setOptions(QColorDialog.ColorDialogOption.ShowAlphaChannel)
-        # Set current colour last to avoid conflicts with alpha channel
+        # Set current color last to avoid conflicts with alpha channel
         colDlg.setCurrentColor(self.__coloursDict[colorKey][0])
         colDlg.currentColorChanged.connect(
             lambda col: self.colourChanged.emit(colorKey, col))
@@ -100,7 +100,7 @@
             button.setIcon(QIcon(pm))
             self.__coloursDict[colorKey][0] = colour
         
-        # Update colour selection
+        # Update color selection
         self.colourChanged.emit(colorKey, self.__coloursDict[colorKey][0])
         
     def saveColours(self, prefMethod):

eric ide

mercurial