all repos — openbox @ 90cecafa3de2f118e550622932d1d30266c71226

openbox fork - make it a bit more like ryudo

Merge branch 'backport' into work
Mikael Magnusson mikachu@gmail.com
commit

90cecafa3de2f118e550622932d1d30266c71226

parent

bd2db36b6cbbc04614e0444fbf652f0a24f8f3ac

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

jump to
M openbox/focus_cycle_indicator.copenbox/focus_cycle_indicator.c

@@ -133,6 +133,12 @@ XDestroyWindow(obt_display, focus_indicator.right.window);

XDestroyWindow(obt_display, focus_indicator.bottom.window); } +void focus_cycle_update_indicator(ObClient *c) +{ + if (visible) + focus_cycle_draw_indicator(c); +} + void focus_cycle_draw_indicator(ObClient *c) { if (!c && visible) {
M openbox/focus_cycle_indicator.hopenbox/focus_cycle_indicator.h

@@ -25,6 +25,7 @@

void focus_cycle_indicator_startup(gboolean reconfig); void focus_cycle_indicator_shutdown(gboolean reconfig); +void focus_cycle_update_indicator(struct _ObClient *c); void focus_cycle_draw_indicator(struct _ObClient *c); #endif
M openbox/frame.copenbox/frame.c

@@ -850,7 +850,7 @@

/* if this occurs while we are focus cycling, the indicator needs to match the changes */ if (focus_cycle_target == self->client) - focus_cycle_draw_indicator(self->client); + focus_cycle_update_indicator(self->client); } if (resized && (self->decorations & OB_FRAME_DECOR_TITLEBAR)) XResizeWindow(obt_display, self->label, self->label_width,