Qt/PropertiesDialog: Make title more like Wx

This commit is contained in:
spycrab 2017-08-26 14:44:38 +02:00
parent 072b423de3
commit 56aad4a958

View File

@ -12,7 +12,8 @@
PropertiesDialog::PropertiesDialog(QWidget* parent, const GameFile& game) : QDialog(parent)
{
setWindowTitle(QStringLiteral("%1: %2").arg(game.GetGameID()).arg(game.GetLongName()));
setWindowTitle(
QStringLiteral("%1: %2 - %3").arg(game.GetFileName(), game.GetGameID(), game.GetLongName()));
QVBoxLayout* layout = new QVBoxLayout();
QTabWidget* tab_widget = new QTabWidget(this);