all repos — fluxbox @ 4c72b13a880c9c87ddd195a01d5e884436336451

custom fork of the fluxbox windowmanager

update autoraise delay for open windows on reconfigure
markt markt
commit

4c72b13a880c9c87ddd195a01d5e884436336451

parent

ab01fc56fddf6dffcc42e68402c981c192b5ac3e

3 files changed, 9 insertions(+), 1 deletions(-)

jump to
M ChangeLogChangeLog

@@ -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
M src/FocusControl.ccsrc/FocusControl.cc

@@ -189,7 +189,11 @@ if (!num) break;

} } } - 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) {
M src/Window.ccsrc/Window.cc

@@ -1059,6 +1059,7 @@

grabButtons(); frame().setDoubleClickTime(Fluxbox::instance()->getDoubleClickInterval()); + m_timer.setTimeout(Fluxbox::instance()->getAutoRaiseDelay()); updateButtons(); frame().reconfigure();