diff options
-rw-r--r-- | xbmc/windows/GUIWindowFileManager.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/xbmc/windows/GUIWindowFileManager.cpp b/xbmc/windows/GUIWindowFileManager.cpp index 29860bcb16..a3632df4e2 100644 --- a/xbmc/windows/GUIWindowFileManager.cpp +++ b/xbmc/windows/GUIWindowFileManager.cpp @@ -309,6 +309,10 @@ bool CGUIWindowFileManager::OnMessage(CGUIMessage& message) } } break; + // prevent touch/gesture unfocussing .. + case GUI_MSG_GESTURE_NOTIFY: + case GUI_MSG_UNFOCUS_ALL: + return true; } return CGUIWindow::OnMessage(message); } |