summaryrefslogtreecommitdiff
path: root/client/aboutbox.cc
diff options
context:
space:
mode:
authorLars Bisballe Jensen <larsbisballe@gmail.com>2011-10-17 11:59:34 +0200
committerLars Bisballe Jensen <larsbisballe@gmail.com>2011-10-17 11:59:34 +0200
commit699c8deadd582f56c13fa8981deae40af76aa0d5 (patch)
tree9d3e467431c674f5591b3d28bd7cb34e1d017ff9 /client/aboutbox.cc
parentf45d63c69769cffd0b7509c4b96fcdee21e41bde (diff)
Ensured that the entire license and release info label space is now white
Diffstat (limited to 'client/aboutbox.cc')
-rw-r--r--client/aboutbox.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/client/aboutbox.cc b/client/aboutbox.cc
index e4d1ffd..47cc9e3 100644
--- a/client/aboutbox.cc
+++ b/client/aboutbox.cc
@@ -81,11 +81,13 @@ AboutBox::AboutBox(QWidget *parent, Qt::WindowFlags f): QDialog(parent, f)
QScrollArea *releaseInfoScroll = new QScrollArea();
releaseInfoScroll->setWidget(releaseInfo);
+ releaseInfoScroll->setStyleSheet("QScrollArea { background-color : white; }");
QLabel *license = new QLabel(gplText);
license->setStyleSheet("QLabel { font-family: monospace; "
"background-color : white; }");
licenseScroll = new QScrollArea();
+ licenseScroll->setStyleSheet("QScrollArea { background-color : white; }");
licenseScroll->setWidget(license);
connect(licenseScroll->verticalScrollBar(), SIGNAL(sliderPressed()),