about summary refs log tree commit diff
path: root/kindlecomicconverter/KCC_gui.py
diff options
context:
space:
mode:
authorbakatrouble <bakatrouble@gmail.com>2017-01-05 20:27:30 +0300
committerPaweł Jastrzębski <pawelj@iosphe.re>2017-01-20 09:54:32 +0100
commitaea7c0fafb204017462bafc1ae0844dfb9c7ec18 (patch)
tree52e67d2b9d39f3b0155389ce5a400c8ea0d2bf15 /kindlecomicconverter/KCC_gui.py
parentUpdate build environment (diff)
downloadkcc-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_gui.py')
-rw-r--r--kindlecomicconverter/KCC_gui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kindlecomicconverter/KCC_gui.py b/kindlecomicconverter/KCC_gui.py
index 16952ab..ca3d73f 100644
--- a/kindlecomicconverter/KCC_gui.py
+++ b/kindlecomicconverter/KCC_gui.py
@@ -672,7 +672,7 @@ class KCCGUI(KCC_ui.Ui_mainWindow):
         # We still fill original text field with transparent content to trigger creation of horizontal scrollbar
         item.setForeground(QtGui.QColor('transparent'))
         label = QtWidgets.QLabel(message)
-        label.setStyleSheet('background-image:url('');background-color:rgba(0,0,0,0);')
+        label.setStyleSheet('background-image:url('');background-color:rgba(0,0,0,0);color:rgb(0,0,0);')
         label.setOpenExternalLinks(True)
         GUI.jobList.addItem(item)
         GUI.jobList.setItemWidget(item, label)