WABA: Move null-focus window to (-1,-1)

Ahhhh, the whole screen feels bigger now.

svn path=/trunk/kdebase/kwin/; revision=68889
This commit is contained in:
Waldo Bastian 2000-10-25 20:16:56 +00:00
parent 144182101d
commit b1d63a2951

View file

@ -1768,7 +1768,7 @@ void Workspace::focusToNull(){
if (w == 0) { if (w == 0) {
mask = CWOverrideRedirect; mask = CWOverrideRedirect;
attr.override_redirect = 1; attr.override_redirect = 1;
w = XCreateWindow(qt_xdisplay(), qt_xrootwin(), 0, 0, 1, 1, 0, CopyFromParent, w = XCreateWindow(qt_xdisplay(), qt_xrootwin(), -1,-1, 1, 1, 0, CopyFromParent,
InputOnly, CopyFromParent, mask, &attr); InputOnly, CopyFromParent, mask, &attr);
XMapWindow(qt_xdisplay(), w); XMapWindow(qt_xdisplay(), w);
} }