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

Merge pull request #111766 from kitbdev/speed_up_spinbox_creation

Improve performance of SpinBox creation
This commit is contained in:
Thaddeus Crews
2025-10-27 10:01:35 -05:00
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));