summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qsoftkeymanager.cpp
diff options
context:
space:
mode:
authorJanne Anttila <janne.anttila@digia.com>2009-11-11 11:36:33 (GMT)
committerJanne Anttila <janne.anttila@digia.com>2009-11-11 12:27:17 (GMT)
commit05920c102d506378401a383aa820cabc9d0419c5 (patch)
tree90f006393f3be412f34f591c4407d0f6526b9c1f /src/gui/kernel/qsoftkeymanager.cpp
parentea89740eb847e7e9499f2f249d2aec0969e6a919 (diff)
downloadQt-05920c102d506378401a383aa820cabc9d0419c5.zip
Qt-05920c102d506378401a383aa820cabc9d0419c5.tar.gz
Qt-05920c102d506378401a383aa820cabc9d0419c5.tar.bz2
Fix for qmessagebox softkey dimming in Symbian.
QMessageBox softkeys gets dimmed by TAknPopupFader since we currently have one global softkey instance. Task-number: QTBUG-5691 Reviewed-by: Jason Barron
Diffstat (limited to 'src/gui/kernel/qsoftkeymanager.cpp')
-rw-r--r--src/gui/kernel/qsoftkeymanager.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/kernel/qsoftkeymanager.cpp b/src/gui/kernel/qsoftkeymanager.cpp
index 6d148fe..22ac319 100644
--- a/src/gui/kernel/qsoftkeymanager.cpp
+++ b/src/gui/kernel/qsoftkeymanager.cpp
@@ -213,12 +213,13 @@ void QSoftKeyManagerPrivate::updateSoftKeys_sys(const QList<QAction*> &softkeys)
CEikButtonGroupContainer* nativeContainer = S60->buttonGroupContainer();
nativeContainer->DrawableWindow()->SetOrdinalPosition(0);
nativeContainer->DrawableWindow()->SetPointerCapturePriority(1); //keep softkeys available in modal dialog
+ nativeContainer->DrawableWindow()->SetFaded(EFalse, RWindowTreeNode::EFadeIncludeChildren);
int position = -1;
bool needsExitButton = true;
QT_TRAP_THROWING(
//Using -1 instead of EAknSoftkeyEmpty to avoid flickering.
- nativeContainer->SetCommandL(0, -1, KNullDesC);
+ nativeContainer->SetCommandL(0, -1, KNullDesC);
nativeContainer->SetCommandL(2, -1, KNullDesC);
);