Wheel up should be zoom in, not out.
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@61648
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
st->info.x = st->zoom_wheel->canvas.x;
st->info.y = st->zoom_wheel->canvas.y;
- if (st->zoom_wheel->z > 0) /* zoom in */
+ if (st->zoom_wheel->z < 0) /* zoom in */
st->info.zoom += (wd->zoom_finger_factor * wd->zoom_wheel_factor);
- if (st->zoom_wheel->z < 0) /* zoom out */
+ if (st->zoom_wheel->z > 0) /* zoom out */
st->info.zoom -= (wd->zoom_finger_factor * wd->zoom_wheel_factor);
if (st->info.zoom < 0.0)