Fix spinBox will reset text when redrawing

This commit is contained in:
jsjtxietian
2023-10-08 20:03:08 +08:00
parent 6916349697
commit 61be3eafc0
2 changed files with 9 additions and 3 deletions

View File

@ -46,12 +46,13 @@ class SpinBox : public Range {
void _range_click_timeout();
void _release_mouse();
void _update_text();
void _update_text(bool p_keep_line_edit = false);
void _text_submitted(const String &p_string);
void _text_changed(const String &p_string);
String prefix;
String suffix;
String last_updated_text;
double custom_arrow_step = 0.0;
void _line_edit_input(const Ref<InputEvent> &p_event);