Merge pull request #5982 from spycrab/qt_properties_title

Qt/PropertiesDialog: Make title more like Wx
This commit is contained in:
JosJuice 2017-08-26 22:57:04 +02:00 committed by GitHub
commit 378a79658e
1 changed files with 2 additions and 1 deletions

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);