diff --git a/splashdialog.cpp b/splashdialog.cpp index 7417789..368a8a6 100644 --- a/splashdialog.cpp +++ b/splashdialog.cpp @@ -34,4 +34,10 @@ void SplashDialog::paintEvent(QPaintEvent *) QImage img(":/Icons/Splash.png"); p.drawImage(0, 0, img); + + if (isSplash) + { + p.setPen(QPen(QColor(0, 0, 0))); + p.drawRect(0, 0, width() - 1, height() - 1); + } }