Using the application name set in the core (with "-dev" suffix in debug builds) as window title.

This commit is contained in:
2025-12-23 10:08:11 +01:00
parent d94a928fc0
commit 6cd0519237

View File

@ -22,7 +22,8 @@ MainWindow::MainWindow(QWidget* parent)
ui->setupUi(this);
m_core = std::make_unique<GenericCore>();
setWindowTitle(windowTitle() + " [*]");
setWindowTitle(QCoreApplication::applicationName() + " [*]");
/// application icon
const QString iconString = "://feature.png";