mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 22:00:10 +00:00
Merge pull request #111766 from kitbdev/speed_up_spinbox_creation
Improve performance of SpinBox creation
This commit is contained in:
commit
6d32d3df75
3 changed files with 1 additions and 2 deletions
|
|
@ -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));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue