Skip to content

Commit

Permalink
[change] - a mouseclick does only break the screensaver - not execute…
Browse files Browse the repository at this point in the history
… the action

- before the mouse button down has broken the screensaver and the mouse button up has executed the action
  • Loading branch information
Memphiz committed Jul 24, 2011
1 parent 8618e75 commit e3b9c3c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion xbmc/Application.cpp
Expand Up @@ -377,12 +377,14 @@ bool CApplication::OnEvent(XBMC_Event& newEvent)
case XBMC_KEYUP:
g_Keyboard.ProcessKeyUp();
break;
case XBMC_MOUSEBUTTONDOWN:
case XBMC_MOUSEBUTTONUP:
case XBMC_MOUSEMOTION:
g_Mouse.HandleEvent(newEvent);
g_application.ProcessMouse();
break;
case XBMC_MOUSEBUTTONDOWN:
g_Mouse.HandleEvent(newEvent);
break;
case XBMC_VIDEORESIZE:
if (!g_application.m_bInitializing &&
!g_advancedSettings.m_fullScreen)
Expand Down

0 comments on commit e3b9c3c

Please sign in to comment.