Skip to content
Permalink
Browse files
Merge pull request #5982 from spycrab/qt_properties_title
Qt/PropertiesDialog: Make title more like Wx
  • Loading branch information
JosJuice committed Aug 26, 2017
2 parents 072b423 + 56aad4a commit 378a796
Showing 1 changed file with 2 additions and 1 deletion.
@@ -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);

0 comments on commit 378a796

Please sign in to comment.