scrollable: multiply default step values by elm scale

bigger scale = bigger objects = bigger scrollers = more wheeling needed
This commit is contained in:
Mike Blumenkrantz 2016-02-18 13:37:13 -05:00
parent 8866722cdb
commit 997a7f2c3d
1 changed files with 2 additions and 2 deletions

View File

@ -4509,8 +4509,8 @@ _elm_interface_scrollable_evas_object_smart_add(Eo *obj, Elm_Scrollable_Smart_In
sid->y = 0;
sid->w = 0;
sid->h = 0;
sid->step.x = 32;
sid->step.y = 32;
sid->step.x = 32 * elm_config_scale_get();
sid->step.y = 32 * elm_config_scale_get();
sid->page.x = -50;
sid->page.y = -50;
sid->page_limit_h = 9999;