all repos — openbox @ 5a96dee7565a1bdbf3088b2eaac276a932742cf6

openbox fork - make it a bit more like ryudo

let the pager popup grow vertically
Dana Jansens danakj@orodu.net
commit

5a96dee7565a1bdbf3088b2eaac276a932742cf6

parent

f969415426c0ae17ecb6c5d2d36802eaaa7bd893

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

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

@@ -169,11 +169,9 @@ }

/* get the height, which is also used for the icon width */ emptyy = t + b + ob_rr_theme->paddingy * 2; - if (self->h) { - h = self->h; - texth = h - emptyy; - } else - h = texth * self->iconhm + emptyy; + if (self->h) + texth = self->h - emptyy; + h = texth * self->iconhm + emptyy; if (self->textw) textw = self->textw;