all repos — openbox @ 2ed4552f8ba79d4f2ca78e61b1c74af8478be988

openbox fork - make it a bit more like ryudo

round up rather than down for figuring out the width of the popup, so it will fit the text when possible
Dana Jansens danakj@orodu.net
commit

2ed4552f8ba79d4f2ca78e61b1c74af8478be988

parent

0de1fd496f3ca61080cee21138cd1aaa83a5e1db

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

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

@@ -264,7 +264,7 @@ w = MAX(w, POPUP_WIDTH); /* min width */

/* how many icons will fit in that row? make the width fit that */ w -= l + r; - icons_per_row = w / ICON_SIZE; + icons_per_row = (w + ICON_SIZE - 1) / ICON_SIZE; w = icons_per_row * ICON_SIZE + l + r; /* how many rows do we need? */