diff options
author | Thorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com> | 2010-02-02 14:29:07 +0100 |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com> | 2010-02-02 14:30:30 +0100 |
commit | 2443a4b365bc095ae6650f99b12d29bf46a2d58a (patch) | |
tree | d13de5fb428724e1220caf12405546c53009e0bc /src | |
parent | e94ff514ed950be1dad25dda415085743678d102 (diff) | |
download | qt-creator-2443a4b365bc095ae6650f99b12d29bf46a2d58a.tar.gz |
Allow navigating into/from children with arrow keys
Related to merge request #106: Jump to filename if Key_Left pressed on
result string in SearchResultWindow.
Reviewed-by: Daniel Molkentin <daniel.molkentin@nokia.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/coreplugin/manhattanstyle.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/coreplugin/manhattanstyle.cpp b/src/plugins/coreplugin/manhattanstyle.cpp index 76e2b2008c..18c00e879b 100644 --- a/src/plugins/coreplugin/manhattanstyle.cpp +++ b/src/plugins/coreplugin/manhattanstyle.cpp @@ -407,6 +407,9 @@ int ManhattanStyle::styleHint(StyleHint hint, const QStyleOption *option, const if (panelWidget(widget)) ret = false; break; + case QStyle::SH_ItemView_ArrowKeysNavigateIntoChildren: + ret = true; + break; default: break; } |