Skip to content

Commit

Permalink
X11: do not poll default monitor
Browse files Browse the repository at this point in the history
  • Loading branch information
FernetMenta committed Oct 28, 2013
1 parent 92836d0 commit b40f057
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/windowing/X11/WinSystemX11.cpp
Expand Up @@ -721,7 +721,7 @@ void CWinSystemX11::NotifyXRREvent(bool poll)
if (poll)
{
CStdString output = CSettings::Get().GetString("videoscreen.monitor");
if (output.Equals(m_currentOutput) || m_userOutput.Equals("Default"))
if (output.Equals(m_currentOutput) || output.Equals("Default"))
return;

int numScreens = XScreenCount(m_dpy);
Expand Down

0 comments on commit b40f057

Please sign in to comment.