From 2443a4b365bc095ae6650f99b12d29bf46a2d58a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Thorbj=C3=B8rn=20Lindeijer?= <thorbjorn.lindeijer@nokia.com>
Date: Tue, 2 Feb 2010 14:29:07 +0100
Subject: [PATCH] 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>
---
 src/plugins/coreplugin/manhattanstyle.cpp | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/plugins/coreplugin/manhattanstyle.cpp b/src/plugins/coreplugin/manhattanstyle.cpp
index 76e2b2008c7..18c00e879b6 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;
     }
-- 
GitLab