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

Improve performance of SpinBox creation

This commit is contained in:
kit
2025-10-17 12:22:30 -04:00
parent fc7065d2b4
commit e232484a37
3 changed files with 1 additions and 2 deletions

View File

@@ -123,6 +123,7 @@ GotoLinePopup::GotoLinePopup() {
vbc->add_child(l);
line_input = memnew(LineEdit);
line_input->set_emoji_menu_enabled(false);
line_input->set_custom_minimum_size(Size2(100, 0) * EDSCALE);
line_input->set_select_all_on_focus(true);
line_input->connect(SceneStringName(text_changed), callable_mp(this, &GotoLinePopup::_goto_line).unbind(1));