call the place window routine after the frame is created
This commit is contained in:
parent
6f0581627a
commit
48741b97c2
1 changed files with 3 additions and 3 deletions
|
@ -471,6 +471,9 @@ void Screen::manageWindow(Window window)
|
|||
// reparented back to root automatically
|
||||
XChangeSaveSet(**otk::display, window, SetModeInsert);
|
||||
|
||||
// create the decoration frame for the client window
|
||||
client->frame = new Frame(client, &_style);
|
||||
|
||||
if (!(openbox->state() == Openbox::State_Starting ||
|
||||
client->positionRequested())) {
|
||||
// position the window intelligenty .. hopefully :)
|
||||
|
@ -479,9 +482,6 @@ void Screen::manageWindow(Window window)
|
|||
openbox->bindings()->fireEvent(&data);
|
||||
}
|
||||
|
||||
// create the decoration frame for the client window
|
||||
client->frame = new Frame(client, &_style);
|
||||
|
||||
// add to the wm's map
|
||||
openbox->addClient(client->frame->window(), client);
|
||||
openbox->addClient(client->frame->plate(), client);
|
||||
|
|
Loading…
Reference in a new issue