From 095a15900528dc3f8af636e6fe1dec7bcc7929d6 Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Wed, 13 Mar 2019 05:22:55 +0100 Subject: [PATCH] lv_tileview_set_tile_act: fix with no animation It should the position of the scrollable but the size was set --- lv_objx/lv_tileview.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lv_objx/lv_tileview.c b/lv_objx/lv_tileview.c index f5c2cba92..f6e45af39 100644 --- a/lv_objx/lv_tileview.c +++ b/lv_objx/lv_tileview.c @@ -220,7 +220,7 @@ void lv_tileview_set_tile_act(lv_obj_t * tileview, lv_coord_t x, lv_coord_t y, b } #endif } else { - lv_obj_set_size(tileview, x_coord, y_coord); + lv_obj_set_pos(scrl, x_coord, y_coord); } }