diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-01-25 17:56:58 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-25 17:56:58 -0500 |
commit | 4ec50dfd4ffc7b2508fa57df8aee510ac0d20447 (patch) | |
tree | 17927bc7f266366b7b7b6bbf121d10d36f1bad35 /src/yuzu/debugger/controller.cpp | |
parent | abda68f3a4e13f658fff0779927b0c7b0b24937f (diff) | |
parent | cdfb3795afa7f9f86f1dca35a424b25115e10f37 (diff) |
Merge pull request #9668 from Morph1984/qt-why-is-this-not-the-default
main: Globally disable the "?" button on dialogs
Diffstat (limited to 'src/yuzu/debugger/controller.cpp')
-rw-r--r-- | src/yuzu/debugger/controller.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/yuzu/debugger/controller.cpp b/src/yuzu/debugger/controller.cpp index 19f3775a3..e2f55ebae 100644 --- a/src/yuzu/debugger/controller.cpp +++ b/src/yuzu/debugger/controller.cpp @@ -20,9 +20,8 @@ ControllerDialog::ControllerDialog(Core::HID::HIDCore& hid_core_, setWindowTitle(tr("Controller P1")); resize(500, 350); setMinimumSize(500, 350); - // Remove the "?" button from the titlebar and enable the maximize button - setWindowFlags((windowFlags() & ~Qt::WindowContextHelpButtonHint) | - Qt::WindowMaximizeButtonHint); + // Enable the maximize button + setWindowFlags(windowFlags() | Qt::WindowMaximizeButtonHint); widget = new PlayerControlPreview(this); refreshConfiguration(); |