summaryrefslogtreecommitdiff
path: root/src/rootwindow.cc
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-12-05 13:45:00 +0000
committerDana Jansens <danakj@orodu.net>2002-12-05 13:45:00 +0000
commit52cb7bd11ed83a57c4c1affcdac8a1f7d68ae551 (patch)
tree5fe2e0800338abb2481d6c370a957c7216eac019 /src/rootwindow.cc
parent1cfc76577db97606893c1f238d589f4cd3f52d7a (diff)
PROPERLY HANDLE CLIENT BORDERS
PROPERLY HANDLE CLIENT GRAVITY YES!#%&*#!#! windows can be moved/resized now (and the frame will play along)!
Diffstat (limited to 'src/rootwindow.cc')
-rw-r--r--src/rootwindow.cc21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/rootwindow.cc b/src/rootwindow.cc
index 23361761..3fccc44a 100644
--- a/src/rootwindow.cc
+++ b/src/rootwindow.cc
@@ -108,25 +108,4 @@ void OBRootWindow::mapRequestHandler(const XMapRequestEvent &e)
}
}
-
-void OBRootWindow::configureRequestHandler(const XConfigureRequestEvent &e)
-{
- OtkEventHandler::configureRequestHandler(e);
-
- // when configure requests come to the root window, just pass them on
- XWindowChanges xwc;
-
- xwc.x = e.x;
- xwc.y = e.y;
- xwc.width = e.width;
- xwc.height = e.height;
- xwc.border_width = e.border_width;
- xwc.sibling = e.above;
- xwc.stack_mode = e.detail;
-
- XConfigureWindow(otk::OBDisplay::display, e.window,
- e.value_mask, &xwc);
-}
-
-
}