aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xbmc/lib/libPython/xbmcmodule/GUIPythonWindowXML.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/xbmc/lib/libPython/xbmcmodule/GUIPythonWindowXML.cpp b/xbmc/lib/libPython/xbmcmodule/GUIPythonWindowXML.cpp
index eef8488932..b69c2b513f 100644
--- a/xbmc/lib/libPython/xbmcmodule/GUIPythonWindowXML.cpp
+++ b/xbmc/lib/libPython/xbmcmodule/GUIPythonWindowXML.cpp
@@ -180,6 +180,7 @@ bool CGUIPythonWindowXML::OnMessage(CGUIMessage& message)
// aquire lock?
PyXBMC_AddPendingCall(m_threadState, Py_XBMC_Event_OnClick, inf);
PulseActionEvent();
+ return true;
}
else if (controlClicked->IsContainer() && message.GetParam1() == ACTION_MOUSE_RIGHT_CLICK)
{
@@ -189,6 +190,7 @@ bool CGUIPythonWindowXML::OnMessage(CGUIMessage& message)
// aquire lock?
PyXBMC_AddPendingCall(m_threadState, Py_XBMC_Event_OnAction, inf);
PulseActionEvent();
+ return true;
}
}
}