Fix dimension computation.

Patch by Chidambar 'ilLogict' Zinnoury.


SVN revision: 36423
This commit is contained in:
Gustavo Sverzut Barbieri 2008-10-03 20:07:36 +00:00
parent 6add15cc93
commit d1f5aeb033
1 changed files with 1 additions and 1 deletions

View File

@ -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);