diff options
author | Janne Anttila <janne.anttila@digia.com> | 2009-12-08 07:57:08 (GMT) |
---|---|---|
committer | Janne Anttila <janne.anttila@digia.com> | 2009-12-08 07:59:20 (GMT) |
commit | 854d8960b98a691094ac51ad69b60d6a3a798ac2 (patch) | |
tree | 9554fae82b46d9b645004dd5c9350f085e776742 /src/gui/widgets/qdialogbuttonbox.cpp | |
parent | 41754fdb11a4d78b7b756b82d4ead235b6618687 (diff) | |
download | Qt-854d8960b98a691094ac51ad69b60d6a3a798ac2.zip Qt-854d8960b98a691094ac51ad69b60d6a3a798ac2.tar.gz Qt-854d8960b98a691094ac51ad69b60d6a3a798ac2.tar.bz2 |
Minor fixes to softkey dimming support (commit 245c9cc0).
In Qt invisible actions are disabled by default, and our "Options"
softkey is set to invisible in order that it is not show in context menu.
Thus we need don't want to dim in softkey even it is disabled.
Additionally, QDialogButtonEnabledProxy need to set the initial enabled
state for proxy action from button.
Fixes bugs in commit: 245c9cc0
Reviewed-by: TrustMe
Diffstat (limited to 'src/gui/widgets/qdialogbuttonbox.cpp')
-rw-r--r-- | src/gui/widgets/qdialogbuttonbox.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/widgets/qdialogbuttonbox.cpp b/src/gui/widgets/qdialogbuttonbox.cpp index 56cf545..9512785 100644 --- a/src/gui/widgets/qdialogbuttonbox.cpp +++ b/src/gui/widgets/qdialogbuttonbox.cpp @@ -265,6 +265,7 @@ public: QDialogButtonEnabledProxy(QObject *parent, QWidget *src, QAction *trg) : QObject(parent), source(src), target(trg) { source->installEventFilter(this); + target->setEnabled(source->isEnabled()); } ~QDialogButtonEnabledProxy() { |