aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarkt <markt>2007-03-31 17:46:51 (GMT)
committermarkt <markt>2007-03-31 17:46:51 (GMT)
commit8964cbdaa8c21c96e1fc0d5297f2bda93b4555e9 (patch)
tree17e1ae0efde1018aca0b85c730c702d32d073e0b
parent491c0e523429f45c02f5da04f8b7fbb45095e1e1 (diff)
downloadfluxbox-8964cbdaa8c21c96e1fc0d5297f2bda93b4555e9.zip
fluxbox-8964cbdaa8c21c96e1fc0d5297f2bda93b4555e9.tar.bz2
fixed a little crash bug
-rw-r--r--src/FocusControl.cc2
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