fix position of version number in splash screen

This commit is contained in:
wmayer
2019-02-20 14:05:13 +01:00
parent f048df5c6f
commit 529ea97cfa

View File

@@ -1319,7 +1319,7 @@ QPixmap MainWindow::splashImage() const
painter.setFont(fontExe);
painter.drawText(x, y, title);
painter.setFont(fontVer);
painter.drawText(x - (l + 5), y, version);
painter.drawText(x + (l + 5), y, version);
painter.end();
}
}