all repos — openbox @ a2a348c233247315e39c8a677064da51de57a9d5

openbox fork - make it a bit more like ryudo

perhaps fix an infinate loop in here..
Dana Jansens danakj@orodu.net
commit

a2a348c233247315e39c8a677064da51de57a9d5

parent

08e28f38a946e66932ed7cb3314aaffcbbc279a2

1 files changed, 4 insertions(+), 2 deletions(-)

jump to
M util/epist/screen.ccutil/epist/screen.cc

@@ -490,8 +490,6 @@ if (target == end) {

target = begin; } else { ++target; - if (target == end) - target = begin; } } else { if (target == begin)

@@ -502,6 +500,10 @@

// must be no window to focus if (target == _active) return; + + // start back at the beginning of the loop + if (target == end) + continue; // determine if this window is invalid for cycling to const XWindow *t = *target;