diff options
author | markt <markt> | 2007-03-31 17:46:51 (GMT) |
---|---|---|
committer | markt <markt> | 2007-03-31 17:46:51 (GMT) |
commit | 8964cbdaa8c21c96e1fc0d5297f2bda93b4555e9 (patch) | |
tree | 17e1ae0efde1018aca0b85c730c702d32d073e0b /src | |
parent | 491c0e523429f45c02f5da04f8b7fbb45095e1e1 (diff) | |
download | fluxbox-8964cbdaa8c21c96e1fc0d5297f2bda93b4555e9.zip fluxbox-8964cbdaa8c21c96e1fc0d5297f2bda93b4555e9.tar.bz2 |
fixed a little crash bug
Diffstat (limited to 'src')
-rw-r--r-- | src/FocusControl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/FocusControl.cc b/src/FocusControl.cc index c97b699..1a4d74d 100644 --- a/src/FocusControl.cc +++ b/src/FocusControl.cc | |||
@@ -125,7 +125,7 @@ void FocusControl::cycleFocus(Focusables &window_list, const ClientPattern *pat, | |||
125 | cycle_reverse ? --it : ++it; | 125 | cycle_reverse ? --it : ++it; |
126 | // give up [do nothing] if we reach the current focused again | 126 | // give up [do nothing] if we reach the current focused again |
127 | if (it == m_cycling_window) | 127 | if (it == m_cycling_window) |
128 | break; | 128 | return; |
129 | if (it == it_end) | 129 | if (it == it_end) |
130 | continue; | 130 | continue; |
131 | 131 | ||