From 19bc6b1b938ec1b6c5cf2957b8b8514b381e47df Mon Sep 17 00:00:00 2001 From: f4exb Date: Sun, 9 Jun 2019 23:10:12 +0200 Subject: [PATCH] Enlarge text box of splash screen so that the tallest characters display correctly --- sdrgui/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdrgui/mainwindow.cpp b/sdrgui/mainwindow.cpp index f3cfeab61..c6dec466e 100644 --- a/sdrgui/mainwindow.cpp +++ b/sdrgui/mainwindow.cpp @@ -116,7 +116,7 @@ MainWindow::MainWindow(qtwebapp::LoggerWithFile *logger, const MainParser& parse QPixmap logoPixmap(":/sdrangel_logo.png"); SDRangelSplash *splash = new SDRangelSplash(logoPixmap); - splash->setMessageRect(QRect(10, 80, 350, 12)); + splash->setMessageRect(QRect(10, 80, 350, 16)); splash->show(); splash->showStatusMessage("starting...", Qt::white);