From 6ff520d02ad3091c7e32a3cfc11fe8d3cb9b042f Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Thu, 10 May 2007 16:34:03 +0000 Subject: [PATCH] always set the multipliers just dont allow 0 --- openbox/popup.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/openbox/popup.c b/openbox/popup.c index d1e1a31f..e3d52e49 100644 --- a/openbox/popup.c +++ b/openbox/popup.c @@ -326,8 +326,9 @@ void icon_popup_delay_show(ObIconPopup *self, gulong usec, void icon_popup_icon_size_multiplier(ObIconPopup *self, guint wm, guint hm) { - if (wm != 0) self->popup->iconwm = wm; - if (hm != 0) self->popup->iconhm = hm; + /* cap them at 1 */ + self->popup->iconwm = MAX(1, wm); + self->popup->iconhm = MAX(1, hm); } static void pager_popup_draw_icon(gint px, gint py, gint w, gint h, @@ -503,6 +504,7 @@ void pager_popup_delay_show(ObPagerPopup *self, gulong usec, void pager_popup_icon_size_multiplier(ObPagerPopup *self, guint wm, guint hm) { - if (wm != 0) self->popup->iconwm = wm; - if (hm != 0) self->popup->iconhm = hm; + /* cap them at 1 */ + self->popup->iconwm = MAX(1, wm); + self->popup->iconhm = MAX(1, hm); } -- 2.39.2