summaryrefslogtreecommitdiff
path: root/src/frame.cc
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-11-11 10:35:59 +0000
committerDana Jansens <danakj@orodu.net>2002-11-11 10:35:59 +0000
commite503323dcf36c7b4c173ddc0cd302b8642361f48 (patch)
treeafe133bb8cd2e3fc3f04136f39fa8e3ae262ea33 /src/frame.cc
parent06a80ce2c7a189e26063d5e4e475ca500778aba5 (diff)
HRM manageExisting() isnt working!
Diffstat (limited to 'src/frame.cc')
-rw-r--r--src/frame.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/frame.cc b/src/frame.cc
index b802889a..388dcea6 100644
--- a/src/frame.cc
+++ b/src/frame.cc
@@ -405,7 +405,7 @@ void OBFrame::grabClient()
OBClient::event_mask);
// raise the client above the frame
- XRaiseWindow(otk::OBDisplay::display, _client->window());
+ //XRaiseWindow(otk::OBDisplay::display, _client->window());
// map the client so it maps when the frame does
XMapWindow(otk::OBDisplay::display, _client->window());
@@ -454,7 +454,6 @@ Window OBFrame::createChild(Window parent, Cursor cursor)
Window w = XCreateWindow(otk::OBDisplay::display, parent, 0, 0, 1, 1, 0,
_screen->getDepth(), InputOutput,
_screen->getVisual(), create_mask, &attrib_create);
- XRaiseWindow(otk::OBDisplay::display, w); // raise above the parent
return w;
}