summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hollerbach <marcel-hollerbach@t-online.de>2016-09-10 10:15:25 +0200
committerMarcel Hollerbach <marcel-hollerbach@t-online.de>2016-09-10 10:17:59 +0200
commitf97f8f61aca18e3be3f170e0a205ad728ba269e5 (patch)
tree2fa24f3ebdf730d759eefae3c14c9ee34f62f73f
parentedb895ee91922bbc61da1575bdd3c64af66543c5 (diff)
downloadenlightenment-f97f8f61aca18e3be3f170e0a205ad728ba269e5.tar.gz
ibar: multiply size with scale
This fixes T4544.
-rw-r--r--src/modules/ibar/e_mod_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/ibar/e_mod_main.c b/src/modules/ibar/e_mod_main.c
index 92c22b75c7..c4f01b5f8e 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)
{