@@ -26,7 +26,8 @@ Available in the `dev` branch
|
|||||||
- `tileview` fix navigation when not screen sized
|
- `tileview` fix navigation when not screen sized
|
||||||
- Use 14px font by default to for better compatibility with smaller displays
|
- Use 14px font by default to for better compatibility with smaller displays
|
||||||
- `linemeter` fix conversation of current value to "level"
|
- `linemeter` fix conversation of current value to "level"
|
||||||
- fix drawing on right border
|
- Fix drawing on right border
|
||||||
|
- Set the cursor image non clickable by default
|
||||||
|
|
||||||
## v7.1.0 (07.07.2020)
|
## v7.1.0 (07.07.2020)
|
||||||
|
|
||||||
|
|||||||
@@ -213,6 +213,7 @@ void lv_indev_set_cursor(lv_indev_t * indev, lv_obj_t * cur_obj)
|
|||||||
indev->cursor = cur_obj;
|
indev->cursor = cur_obj;
|
||||||
lv_obj_set_parent(indev->cursor, lv_disp_get_layer_sys(indev->driver.disp));
|
lv_obj_set_parent(indev->cursor, lv_disp_get_layer_sys(indev->driver.disp));
|
||||||
lv_obj_set_pos(indev->cursor, indev->proc.types.pointer.act_point.x, indev->proc.types.pointer.act_point.y);
|
lv_obj_set_pos(indev->cursor, indev->proc.types.pointer.act_point.x, indev->proc.types.pointer.act_point.y);
|
||||||
|
lv_obj_set_click(indev->cursor, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if LV_USE_GROUP
|
#if LV_USE_GROUP
|
||||||
|
|||||||
Reference in New Issue
Block a user