diff options
Diffstat (limited to 'client/aboutwindow.cc')
-rw-r--r-- | client/aboutwindow.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/client/aboutwindow.cc b/client/aboutwindow.cc index 849608d..9be7c32 100644 --- a/client/aboutwindow.cc +++ b/client/aboutwindow.cc @@ -44,7 +44,9 @@ AboutWindow::AboutWindow( QWidget* parent) resize(pix_about->width(), pix_about->height()); - // setBackgroundColor(QColor(200,200,200)); + QPalette palette; + palette.setColor(backgroundRole(), QColor(200,200,200)); + setPalette(palette); btn_ok = new QPushButton(this); btn_ok->setText("OK"); |