diff options
-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 | ||