Add icon colour settings to themes and enforce them on all GUI icons
This commit is contained in:
@@ -79,10 +79,10 @@ class GuiDictionaries(NNonBlockingDialog):
|
||||
self.huInfo.setOpenExternalLinks(True)
|
||||
self.huInfo.setWordWrap(True)
|
||||
self.huInput = QLineEdit(self)
|
||||
self.huBrowse = NIconToolButton(self, iSz, "browse")
|
||||
self.huBrowse = NIconToolButton(self, iSz, "browse", "systemio")
|
||||
self.huBrowse.clicked.connect(self._doBrowseHunspell)
|
||||
self.huImport = QPushButton(self.tr("Add Dictionary"), self)
|
||||
self.huImport.setIcon(SHARED.theme.getIcon("add", "green"))
|
||||
self.huImport.setIcon(SHARED.theme.getIcon("add", "add"))
|
||||
self.huImport.clicked.connect(self._doImportHunspell)
|
||||
|
||||
self.huPathBox = QHBoxLayout()
|
||||
@@ -97,7 +97,7 @@ class GuiDictionaries(NNonBlockingDialog):
|
||||
self.inInfo = QLabel(self.tr("Dictionary install location"), self)
|
||||
self.inPath = QLineEdit(self)
|
||||
self.inPath.setReadOnly(True)
|
||||
self.inBrowse = NIconToolButton(self, iSz, "browse")
|
||||
self.inBrowse = NIconToolButton(self, iSz, "browse", "systemio")
|
||||
self.inBrowse.clicked.connect(self._doOpenInstallLocation)
|
||||
|
||||
self.inBox = QHBoxLayout()
|
||||
|
||||
Reference in New Issue
Block a user