screwed up the order in which hints were retrieved on windows. this actualy turns out to be important :)
This commit is contained in:
parent
5862475ff2
commit
37824505d7
1 changed files with 8 additions and 9 deletions
|
@ -153,10 +153,17 @@ BlackboxWindow::BlackboxWindow(Blackbox *b, Window w, BScreen *s) {
|
|||
client.rect.setRect(wattrib.x, wattrib.y, wattrib.width, wattrib.height);
|
||||
client.old_bw = wattrib.border_width;
|
||||
|
||||
timer = 0;
|
||||
windowmenu = 0;
|
||||
lastButtonPressTime = 0;
|
||||
|
||||
timer = new BTimer(blackbox, this);
|
||||
timer->setTimeout(blackbox->getAutoRaiseDelay());
|
||||
|
||||
if (! getBlackboxHints()) {
|
||||
getMWMHints();
|
||||
getNetWMHints();
|
||||
}
|
||||
|
||||
// get size, aspect, minimum/maximum size and other hints set by the
|
||||
// client
|
||||
getWMProtocols();
|
||||
|
@ -169,14 +176,6 @@ BlackboxWindow::BlackboxWindow(Blackbox *b, Window w, BScreen *s) {
|
|||
return;
|
||||
}
|
||||
|
||||
timer = new BTimer(blackbox, this);
|
||||
timer->setTimeout(blackbox->getAutoRaiseDelay());
|
||||
|
||||
if (! getBlackboxHints()) {
|
||||
getMWMHints();
|
||||
getNetWMHints();
|
||||
}
|
||||
|
||||
frame.window = createToplevelWindow();
|
||||
frame.plate = createChildWindow(frame.window);
|
||||
associateClientWindow();
|
||||
|
|
Loading…
Reference in a new issue