aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/help
diff options
context:
space:
mode:
authorGravatar Fabio Bas2009-08-29 16:39:22 +0000
committerGravatar Fabio Bas2009-08-29 16:39:22 +0000
commita6a593386a5ef3e5e36f21d5f907c730200e8c08 (patch)
tree3ccc161f4b573352a5e1d6d082c8a6d60d7806c5 /src/modules/help
parentsome svn cleaning (yes, this is a good sign) (diff)
downloadKVIrc-a6a593386a5ef3e5e36f21d5f907c730200e8c08.tar.gz
KVIrc-a6a593386a5ef3e5e36f21d5f907c730200e8c08.tar.bz2
KVIrc-a6a593386a5ef3e5e36f21d5f907c730200e8c08.zip
fixed unreadable help on dark themes
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@3435 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/help')
-rw-r--r--src/modules/help/helpwidget.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modules/help/helpwidget.cpp b/src/modules/help/helpwidget.cpp
index ffd65b239..df74a6b77 100644
--- a/src/modules/help/helpwidget.cpp
+++ b/src/modules/help/helpwidget.cpp
@@ -55,6 +55,7 @@ KviHelpWidget::KviHelpWidget(QWidget * par,KviFrame *,bool bIsStandalone)
m_pTextBrowser->setObjectName("text_browser");
m_pTextBrowser->setFrameStyle(QFrame::StyledPanel|QFrame::Sunken);
m_pTextBrowser->setFocusPolicy(Qt::NoFocus);
+ m_pTextBrowser->setStyleSheet("QTextBrowser { background-color:white; color:black; }");
m_pToolBar = new KviTalHBox(this);
m_pBtnIndex = new QToolButton(m_pToolBar);