From d885235ebc687e0e39062a6216f629232bc80527 Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Sat, 28 Jul 2012 15:32:50 +0000 Subject: [PATCH] E: Fix default shelf size. Currently, for existing shelf sizes, we calculate against e_scale so the default size of 40 should be adjusted against e_scale also. SVN revision: 74535 --- src/bin/e_shelf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_shelf.c b/src/bin/e_shelf.c index ed36756a3..284f3ce47 100644 --- a/src/bin/e_shelf.c +++ b/src/bin/e_shelf.c @@ -660,7 +660,7 @@ EAPI void e_shelf_position_calc(E_Shelf *es) { E_Gadcon_Orient orient = E_GADCON_ORIENT_FLOAT; - int size = 40; + int size = (40 * e_scale); if (es->cfg) {