Unverified Commit 7ec73ef2 authored by Mike Gabriel's avatar Mike Gabriel

Merge branch 'uli42-pr/xinerama_without_wm' into 3.6.x

parents c0f67abb 3f6d8f3e
......@@ -2041,6 +2041,18 @@ FIXME: Don't enqueue the KeyRelease event if the key was
nxagentVisibilityTimeout = GetTimeInMillis() + 2000;
}
/*
* without window manager there will be no ConfigureNotify
* event that would trigger xinerama updates. So we do that once
* the nxagent window gets mapped.
*/
if (nxagentWMIsRunning == 0 &&
X.xmap.window == nxagentDefaultWindows[nxagentScreen(X.xmap.window)->myNum])
{
nxagentChangeScreenConfig(nxagentScreen(X.xmap.window)->myNum, nxagentOption(Width),
nxagentOption(Height));
}
break;
}
case MappingNotify:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment