1
0
Fork 0

set the window title from the app metadata

This commit is contained in:
Kevin Matz 2023-04-09 19:35:34 -04:00
parent 3cb89f51d3
commit c801ffb32b
2 changed files with 1 additions and 3 deletions

View File

@ -10,9 +10,6 @@
<height>600</height>
</rect>
</property>
<property name="windowTitle">
<string>sACN Multiverse</string>
</property>
<widget class="QWidget" name="centralwidget">
<layout class="QVBoxLayout" name="verticalLayout">
<item>

View File

@ -35,6 +35,7 @@ SacnExplorer::SacnExplorer(int argc, char *argv[])
// Multiverse Explorer
window_ = new MultiverseWindow(nullptr, node_);
window_->setWindowTitle(QApplication::applicationName());
window_->show();
}