lv_tileview_set_tile_act: fix with no animation

It should the position of the scrollable but the size was set
This commit is contained in:
Gabor Kiss-Vamosi
2019-03-13 05:22:55 +01:00
parent 2eaa579121
commit 095a159005

View File

@@ -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);
}
}