changeset 288:6fd31a4308f5

Simplify.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 09 May 2023 11:40:49 +0300
parents 0644b1529d13
children 00a6cbdd3281
files src/main.cpp
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/main.cpp	Tue May 09 11:40:34 2023 +0300
+++ b/src/main.cpp	Tue May 09 11:40:49 2023 +0300
@@ -269,9 +269,9 @@
         arg(APP_VERSION));
 
     // Setup large logo in the main window
-    QPixmap logoImage(":/logo");
-    ui->label_LogoImage->setPixmap(logoImage);
+    ui->label_LogoImage->setPixmap(QPixmap(QStringLiteral(":/logo")));
     ui->label_LogoImage->setAlignment(Qt::AlignCenter);
+//    ui->label_LogoImage->setVisible(false);
 
     slSetCommonStyleSheet(this);