diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2023-01-25 01:11:20 -0500 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2023-01-25 01:12:50 -0500 |
commit | cdfb3795afa7f9f86f1dca35a424b25115e10f37 (patch) | |
tree | f7d728acfb66a08c8e94aecf659bf9c279cb72fb /src/yuzu/install_dialog.cpp | |
parent | 44b981fd3eb3db5c15bcc24e61bae45607223ee6 (diff) |
main: Globally disable the "?" button on dialogs
Sets the AA_DisableWindowContextHelpButton attribute to disable this useless button globally.
Diffstat (limited to 'src/yuzu/install_dialog.cpp')
-rw-r--r-- | src/yuzu/install_dialog.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/yuzu/install_dialog.cpp b/src/yuzu/install_dialog.cpp index 84ec4fe13..673bbaa83 100644 --- a/src/yuzu/install_dialog.cpp +++ b/src/yuzu/install_dialog.cpp @@ -46,7 +46,6 @@ InstallDialog::InstallDialog(QWidget* parent, const QStringList& files) : QDialo vbox_layout->addLayout(hbox_layout); setLayout(vbox_layout); - setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint); setWindowTitle(tr("Install Files to NAND")); } |