From 6cd0519237763ff8d1787bd4c913eb2b32777712 Mon Sep 17 00:00:00 2001 From: Bent Witthold Date: Tue, 23 Dec 2025 10:08:11 +0100 Subject: [PATCH] Using the application name set in the core (with "-dev" suffix in debug builds) as window title. --- mainwindow.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 5397ccc..da456be 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -22,7 +22,8 @@ MainWindow::MainWindow(QWidget* parent) ui->setupUi(this); m_core = std::make_unique(); - setWindowTitle(windowTitle() + " [*]"); + + setWindowTitle(QCoreApplication::applicationName() + " [*]"); /// application icon const QString iconString = "://feature.png";