1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Rename LineEdit caret_* properties getters and setters to match property

This commit is contained in:
Marcel Admiraal
2021-03-28 19:31:25 +01:00
parent 837b5da6a4
commit 86822b187e
15 changed files with 248 additions and 248 deletions

View File

@@ -488,10 +488,10 @@ void FindReplaceBar::_show_search(bool p_focus_replace, bool p_show_only) {
if (!get_search_text().is_empty()) {
if (p_focus_replace) {
replace_text->select_all();
replace_text->set_cursor_position(replace_text->get_text().length());
replace_text->set_caret_column(replace_text->get_text().length());
} else {
search_text->select_all();
search_text->set_cursor_position(search_text->get_text().length());
search_text->set_caret_column(search_text->get_text().length());
}
results_count = -1;