Err, what's with the compressed pagers eh?

SVN revision: 12885
This commit is contained in:
xcomputerman 2005-01-11 06:54:08 +00:00 committed by xcomputerman
parent e51d72c607
commit f1ed5dd58d
1 changed files with 5 additions and 5 deletions

View File

@ -263,13 +263,13 @@ _pager_refresh(Pager *e)
Evas_Coord px, py, pw, ph, ww, hh;
double scalex, scaley;
evas_object_resize(e->base, e->fw, e->fh);
evas_object_move(e->base, e->fx, e->fy);
zone = e_zone_current_get(e->con);
e_zone_desk_count_get(zone, &desks_x, &desks_y);
pw = e->fw / (double) desks_x;
ph = e->fh / (double) desks_y;
pw = e->fw;
ph = e->fh;
evas_object_resize(e->base, e->fw * desks_x, e->fh * desks_y);
evas_object_move(e->base, e->fx, e->fy);
evas_output_viewport_get(e->evas, NULL, NULL, &ww, &hh);
scalex = (double) pw / ww;