diff options
author | Kai Koehne <[email protected]> | 2020-02-19 12:53:27 +0100 |
---|---|---|
committer | Kai Koehne <[email protected]> | 2020-02-25 13:26:44 +0000 |
commit | fda9955df077eaaa6f112cf9785442a3b4d9659d (patch) | |
tree | 743aaf5a96b1819d4bbe1a7a8b19605c81e353a1 /src/plugins/debugger/breakhandler.cpp | |
parent | 44db8e2eabc065ac32a1f4e12a53a482fc0c8122 (diff) |
Globally disable WindowContextHelpButtonHint
Do set the global application flag AA_DisableWindowContextHelpButton
to avoid having to unset the default WindowContextHelpButtonHint
in every single dialog.
AA_DisableWindowContextHelpButton was added in Qt 5.10.
Change-Id: I21fe8bc5ddfa4c01ec7a799b04bfb6ff1c9d6d86
Reviewed-by: Eike Ziller <[email protected]>
Diffstat (limited to 'src/plugins/debugger/breakhandler.cpp')
-rw-r--r-- | src/plugins/debugger/breakhandler.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/plugins/debugger/breakhandler.cpp b/src/plugins/debugger/breakhandler.cpp index df2f62dd847..ae840e772c6 100644 --- a/src/plugins/debugger/breakhandler.cpp +++ b/src/plugins/debugger/breakhandler.cpp @@ -874,7 +874,6 @@ private: MultiBreakPointsDialog::MultiBreakPointsDialog(unsigned int enabledParts, QWidget *parent) : QDialog(parent) { - setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint); setWindowTitle(tr("Edit Breakpoint Properties")); m_lineEditCondition = new QLineEdit(this); |