aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Kortstiege <mkortstiege@kodi.tv>2015-11-08 17:22:05 +0100
committerMemphiz <memphis@machzwo.de>2015-11-30 20:51:16 +0100
commitf017111d3cc616da4cf11912eeee1859edfbdce3 (patch)
treed2cbb421f1a12642d436f8719deecf497e5d18dc
parent558a8f18d608b724683e05fcc8cb613e19892977 (diff)
[touch/filemanager] - workaround for the non-working touch input in the filemanager window
-rw-r--r--xbmc/windows/GUIWindowFileManager.cpp4
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);
}