Skip to content

Commit

Permalink
X11: ignore EnterNotify when no WM is used
Browse files Browse the repository at this point in the history
  • Loading branch information
FernetMenta committed Apr 4, 2013
1 parent 40cad3f commit 99cca00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/windowing/X11/WinSystemX11.cpp
Expand Up @@ -583,7 +583,7 @@ void CWinSystemX11::NotifyAppFocusChange(bool bGaining)

void CWinSystemX11::NotifyMouseCoverage(bool covered)
{
if (!m_bFullScreen)
if (!m_bFullScreen || !HasWindowManager())
return;

if (covered)
Expand Down

0 comments on commit 99cca00

Please sign in to comment.