all repos — openbox @ a89166a14f65b62b8a5c1ffccf33f791e00c294d

openbox fork - make it a bit more like ryudo

cleaner while loop
Dana Jansens danakj@orodu.net
commit

a89166a14f65b62b8a5c1ffccf33f791e00c294d

parent

73a584981e853f03cbd01930d27d138c6b95707b

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

jump to
M otk/application.ccotk/application.cc

@@ -56,9 +56,8 @@ }

while (_appwidget_count > 0) { dispatchEvents(); - if (_appwidget_count <= 0) - break; - Timer::dispatchTimers(); // fire pending events + if (_appwidget_count > 0) + Timer::dispatchTimers(); // fire pending events } }