diff options
| author | 2021-06-22 23:19:13 -0400 | |
|---|---|---|
| committer | 2021-06-22 23:19:13 -0400 | |
| commit | c1a9fa9db7c47f0c0947aca86c23d5a0551374bb (patch) | |
| tree | ae01474ebc57991b8d167e089656b0d861489a30 | |
| parent | Merge pull request #6512 from ReinUsesLisp/wait-detached-stasks (diff) | |
| parent | Simple resizing of the Per-Game configuration window and removal of useless H... (diff) | |
| download | yuzu-c1a9fa9db7c47f0c0947aca86c23d5a0551374bb.tar.gz yuzu-c1a9fa9db7c47f0c0947aca86c23d5a0551374bb.tar.xz yuzu-c1a9fa9db7c47f0c0947aca86c23d5a0551374bb.zip | |
Merge pull request #6514 from OZtistic/master
Simple resizing of Per-Game configuration window and removal of useless Help question mark button in the title bar
| -rw-r--r-- | src/yuzu/configuration/configure_per_game.cpp | 2 | ||||
| -rw-r--r-- | src/yuzu/configuration/configure_per_game.ui | 7 |
2 files changed, 8 insertions, 1 deletions
diff --git a/src/yuzu/configuration/configure_per_game.cpp b/src/yuzu/configuration/configure_per_game.cpp index a1d434aca..8c00eec59 100644 --- a/src/yuzu/configuration/configure_per_game.cpp +++ b/src/yuzu/configuration/configure_per_game.cpp | |||
| @@ -47,6 +47,8 @@ ConfigurePerGame::ConfigurePerGame(QWidget* parent, u64 title_id, const std::str | |||
| 47 | ui->setupUi(this); | 47 | ui->setupUi(this); |
| 48 | setFocusPolicy(Qt::ClickFocus); | 48 | setFocusPolicy(Qt::ClickFocus); |
| 49 | setWindowTitle(tr("Properties")); | 49 | setWindowTitle(tr("Properties")); |
| 50 | // remove Help question mark button from the title bar | ||
| 51 | setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint); | ||
| 50 | 52 | ||
| 51 | ui->addonsTab->SetTitleId(title_id); | 53 | ui->addonsTab->SetTitleId(title_id); |
| 52 | 54 | ||
diff --git a/src/yuzu/configuration/configure_per_game.ui b/src/yuzu/configuration/configure_per_game.ui index adf6d0b39..7da14146b 100644 --- a/src/yuzu/configuration/configure_per_game.ui +++ b/src/yuzu/configuration/configure_per_game.ui | |||
| @@ -6,10 +6,15 @@ | |||
| 6 | <rect> | 6 | <rect> |
| 7 | <x>0</x> | 7 | <x>0</x> |
| 8 | <y>0</y> | 8 | <y>0</y> |
| 9 | <width>800</width> | 9 | <width>900</width> |
| 10 | <height>600</height> | 10 | <height>600</height> |
| 11 | </rect> | 11 | </rect> |
| 12 | </property> | 12 | </property> |
| 13 | <property name="minimumSize"> | ||
| 14 | <size> | ||
| 15 | <width>900</width> | ||
| 16 | </size> | ||
| 17 | </property> | ||
| 13 | <property name="windowTitle"> | 18 | <property name="windowTitle"> |
| 14 | <string>Dialog</string> | 19 | <string>Dialog</string> |
| 15 | </property> | 20 | </property> |