You've already forked godot
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user