summaryrefslogtreecommitdiffstats
path: root/src/b2qt-flashing-wizard/mainwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/b2qt-flashing-wizard/mainwindow.cpp')
-rw-r--r--src/b2qt-flashing-wizard/mainwindow.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/b2qt-flashing-wizard/mainwindow.cpp b/src/b2qt-flashing-wizard/mainwindow.cpp
index 000a710..17114c1 100644
--- a/src/b2qt-flashing-wizard/mainwindow.cpp
+++ b/src/b2qt-flashing-wizard/mainwindow.cpp
@@ -40,7 +40,8 @@ QString G_mode; // adb or fastboot
MainWindow::MainWindow()
: QWizard()
{
- setPixmap(QWizard::LogoPixmap, QPixmap(":logo.png"));
+ setWindowTitle(tr("Boot to Qt Flashing Wizard"));
+ setPixmap(QWizard::LogoPixmap, QPixmap(":logo.png").scaled(64, 64, Qt::IgnoreAspectRatio, Qt::SmoothTransformation));
setPixmap(QWizard::BackgroundPixmap, QPixmap(":background.png"));
setPixmap(QWizard::WatermarkPixmap, QPixmap(":watermark.png"));
G_SDKDIR = qgetenv("SDKDIR");