update autoraise delay for open windows on reconfigure

This commit is contained in:
markt 2007-11-04 22:42:01 +00:00
parent ab01fc56fd
commit 4c72b13a88
3 changed files with 9 additions and 1 deletions

View file

@ -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

View file

@ -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) {

View file

@ -1059,6 +1059,7 @@ void FluxboxWindow::reconfigure() {
grabButtons();
frame().setDoubleClickTime(Fluxbox::instance()->getDoubleClickInterval());
m_timer.setTimeout(Fluxbox::instance()->getAutoRaiseDelay());
updateButtons();
frame().reconfigure();