mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00:00
Qt/PropertiesDialog: Make title more like Wx
This commit is contained in:
parent
072b423de3
commit
56aad4a958
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue