diff options
Diffstat (limited to 'client')
-rw-r--r-- | client/aboutbox.cc | 2 |
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()), |