diff options
author | bakatrouble <bakatrouble@gmail.com> | 2017-01-05 20:27:30 +0300 |
---|---|---|
committer | Paweł Jastrzębski <pawelj@iosphe.re> | 2017-01-20 09:54:32 +0100 |
commit | aea7c0fafb204017462bafc1ae0844dfb9c7ec18 (patch) | |
tree | 52e67d2b9d39f3b0155389ce5a400c8ea0d2bf15 /kindlecomicconverter/KCC_ui.py | |
parent | Update build environment (diff) | |
download | kcc-aea7c0fafb204017462bafc1ae0844dfb9c7ec18.tar.gz kcc-aea7c0fafb204017462bafc1ae0844dfb9c7ec18.tar.bz2 kcc-aea7c0fafb204017462bafc1ae0844dfb9c7ec18.zip |
Fix unreadable text with dark qt themes
Fix unreadable text with dark qt themes #2 (file list) Tweaks
Diffstat (limited to 'kindlecomicconverter/KCC_ui.py')
-rw-r--r-- | kindlecomicconverter/KCC_ui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kindlecomicconverter/KCC_ui.py b/kindlecomicconverter/KCC_ui.py index 6e2ed50..71689ab 100644 --- a/kindlecomicconverter/KCC_ui.py +++ b/kindlecomicconverter/KCC_ui.py @@ -31,7 +31,7 @@ class Ui_mainWindow(object): self.progressBar.setObjectName("progressBar") self.gridLayout.addWidget(self.progressBar, 1, 0, 1, 2) self.jobList = QtWidgets.QListWidget(self.centralWidget) - self.jobList.setStyleSheet("QListWidget#jobList {background:#ffffff;background-image:url(:/Other/icons/list_background.png);background-position:center center;background-repeat:no-repeat;}") + self.jobList.setStyleSheet("QListWidget#jobList {background:#ffffff;background-image:url(:/Other/icons/list_background.png);background-position:center center;background-repeat:no-repeat;color:rgb(0,0,0);}") self.jobList.setSelectionMode(QtWidgets.QAbstractItemView.NoSelection) self.jobList.setVerticalScrollMode(QtWidgets.QAbstractItemView.ScrollPerPixel) self.jobList.setHorizontalScrollMode(QtWidgets.QAbstractItemView.ScrollPerPixel) |