summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
authorGustavo Sverzut Barbieri <barbieri@gmail.com>2008-10-03 20:07:36 +0000
committerGustavo Sverzut Barbieri <barbieri@gmail.com>2008-10-03 20:07:36 +0000
commitd1f5aeb0331b563a383a6c883cca12bb79ba4e37 (patch)
tree9de30246fe062bdba6b627e5e42794b2e8938dfa /src/modules
parent6add15cc9362b20b8243d8c97977e0d83599f3a7 (diff)
downloadenlightenment-d1f5aeb0331b563a383a6c883cca12bb79ba4e37.tar.gz
Fix dimension computation.
Patch by Chidambar 'ilLogict' Zinnoury. SVN revision: 36423
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/pager/e_mod_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/pager/e_mod_main.c b/src/modules/pager/e_mod_main.c
index 71c9d243f2..119cba4e1e 100644
--- a/src/modules/pager/e_mod_main.c
+++ b/src/modules/pager/e_mod_main.c
@@ -711,7 +711,7 @@ _pager_popup_new(E_Zone *zone, int keyaction)
else
height = pager_config->popup_height * y;
- width = ((zone->w * x)/(zone->h * y)) * height;
+ width = height * (zone->w * x)/(zone->h * y);
evas_object_move(pp->pager->o_table, 0, 0);
evas_object_resize(pp->pager->o_table, width, height);