1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-08-25 13:36:45 -05:00

Simple resizing of the Per-Game configuration window and removal of useless Help question mark button in the title bar

This commit is contained in:
OZtistic
2021-06-23 09:25:10 +10:00
parent 0308a2679e
commit 36aacf62ad
2 changed files with 8 additions and 1 deletions

View File

@@ -47,6 +47,8 @@ ConfigurePerGame::ConfigurePerGame(QWidget* parent, u64 title_id, const std::str
ui->setupUi(this);
setFocusPolicy(Qt::ClickFocus);
setWindowTitle(tr("Properties"));
// remove Help question mark button from the title bar
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
ui->addonsTab->SetTitleId(title_id);