Windows: Add border around splash screen. It's ugly otherwise.

This commit is contained in:
Melanie Thielker
2016-11-25 00:01:41 +00:00
parent d38effa318
commit 6c0c35461e
+6
View File
@@ -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);
}
}