diff --git a/src/widgets/lv_textarea.h b/src/widgets/lv_textarea.h index 39f56c1c11..d07d4d74d2 100644 --- a/src/widgets/lv_textarea.h +++ b/src/widgets/lv_textarea.h @@ -141,13 +141,6 @@ void lv_textarea_set_placeholder_text(lv_obj_t * ta, const char * txt); */ void lv_textarea_set_cursor_pos(lv_obj_t * ta, int32_t pos); -/** - * Hide/Unhide the cursor. - * @param ta pointer to a text area object - * @param hide true: hide the cursor - */ -void lv_textarea_set_cursor_hidden(lv_obj_t * ta, bool hide); - /** * Enable/Disable the positioning of the cursor by clicking the text on the text area. * @param ta pointer to a text area object @@ -239,13 +232,6 @@ lv_obj_t * lv_textarea_get_label(const lv_obj_t * ta); */ uint32_t lv_textarea_get_cursor_pos(const lv_obj_t * ta); -/** - * Get whether the cursor is hidden or not - * @param ta pointer to a text area object - * @return true: the cursor is hidden - */ -bool lv_textarea_get_cursor_hidden(const lv_obj_t * ta); - /** * Get whether the cursor click positioning is enabled or not. * @param ta pointer to a text area object