elm elm_interface_scrollable.c: Fixed typo. min -> max.

SVN revision: 83461
This commit is contained in:
Daniel Juyung Seo 2013-01-30 09:14:06 +00:00
parent dafc4d3ba0
commit bc5737353b
1 changed files with 1 additions and 1 deletions

View File

@ -2913,7 +2913,7 @@ _elm_scroll_mouse_move_event_cb(void *data,
Evas_Coord minx, miny, mx, my;
eo_do(sid->pan_obj, elm_obj_pan_pos_min_get(&minx, &miny));
eo_do(sid->pan_obj, elm_obj_pan_pos_min_get(&mx, &my));
eo_do(sid->pan_obj, elm_obj_pan_pos_max_get(&mx, &my));
if (y < miny)
y += (miny - y) *
_elm_config->thumbscroll_border_friction;