diff options
author | markt <markt> | 2006-07-23 01:41:37 (GMT) |
---|---|---|
committer | markt <markt> | 2006-07-23 01:41:37 (GMT) |
commit | def26c19e5b787916104c03f5540e5b3a44004eb (patch) | |
tree | 06259a756a310b156252f9dbb2943c29edaab9cc /src/Window.cc | |
parent | 85b2664d78d9acf8010c1e0978458b91a8260696 (diff) | |
download | fluxbox-def26c19e5b787916104c03f5540e5b3a44004eb.zip fluxbox-def26c19e5b787916104c03f5540e5b3a44004eb.tar.bz2 |
fix restacking while cycling
Diffstat (limited to 'src/Window.cc')
-rw-r--r-- | src/Window.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Window.cc b/src/Window.cc index aa9a2b7..265d948 100644 --- a/src/Window.cc +++ b/src/Window.cc | |||
@@ -2101,7 +2101,7 @@ void FluxboxWindow::setFocusFlag(bool focus) { | |||
2101 | if (focus != frame().focused()) | 2101 | if (focus != frame().focused()) |
2102 | frame().setFocus(focus); | 2102 | frame().setFocus(focus); |
2103 | 2103 | ||
2104 | if (screen().doAutoRaise()) { | 2104 | if (screen().doAutoRaise() && !screen().focusControl().isCycling()) { |
2105 | if (focused) | 2105 | if (focused) |
2106 | m_timer.start(); | 2106 | m_timer.start(); |
2107 | else | 2107 | else |