From f97f8f61aca18e3be3f170e0a205ad728ba269e5 Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Sat, 10 Sep 2016 10:15:25 +0200 Subject: [PATCH] ibar: multiply size with scale This fixes T4544. --- src/modules/ibar/e_mod_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/ibar/e_mod_main.c b/src/modules/ibar/e_mod_main.c index 92c22b75c..c4f01b5f8 100644 --- a/src/modules/ibar/e_mod_main.c +++ b/src/modules/ibar/e_mod_main.c @@ -645,7 +645,7 @@ _ibar_resize_handle(IBar *b) if (b->inst->gcc->gadcon->shelf) { /* we are in a shelf */ - ww = hh = b->inst->gcc->gadcon->shelf->cfg->size; + ww = hh = b->inst->gcc->gadcon->shelf->cfg->size * elm_config_scale_get(); } else if (b->inst->gcc->max.w || b->inst->gcc->max.h) {