update autoraise delay for open windows on reconfigure
This commit is contained in:
parent
ab01fc56fd
commit
4c72b13a88
3 changed files with 9 additions and 1 deletions
|
@ -1,5 +1,8 @@
|
|||
(Format: Year/Month/Day)
|
||||
Changes for 1.0.1:
|
||||
*07/11/04:
|
||||
* Update autoraise delay on reconfigure (Mark)
|
||||
Window.cc
|
||||
*07/10/31:
|
||||
* Move fullscreen windows to normal layer when they lose focus (Mark)
|
||||
Window.cc FocusControl.cc
|
||||
|
|
|
@ -189,7 +189,11 @@ void FocusControl::goToWindowNumber(const Focusables &winlist, int num,
|
|||
}
|
||||
}
|
||||
}
|
||||
if (last_matched) last_matched->focus();
|
||||
if (last_matched) {
|
||||
last_matched->focus();
|
||||
if (last_matched->fbwindow())
|
||||
last_matched->fbwindow()->raise();
|
||||
}
|
||||
}
|
||||
|
||||
void FocusControl::addFocusBack(WinClient &client) {
|
||||
|
|
|
@ -1059,6 +1059,7 @@ void FluxboxWindow::reconfigure() {
|
|||
grabButtons();
|
||||
|
||||
frame().setDoubleClickTime(Fluxbox::instance()->getDoubleClickInterval());
|
||||
m_timer.setTimeout(Fluxbox::instance()->getAutoRaiseDelay());
|
||||
|
||||
updateButtons();
|
||||
frame().reconfigure();
|
||||
|
|
Loading…
Reference in a new issue