1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-30 18:30:54 +00:00

Merge pull request #114231 from passivestar/tree-line-edit

Fix tree line editor corners
This commit is contained in:
Rémi Verschelde
2025-12-21 10:41:44 +01:00
3 changed files with 27 additions and 0 deletions

View File

@@ -6889,6 +6889,7 @@ Tree::Tree() {
popup_editor->add_child(popup_editor_vb);
line_editor = memnew(LineEdit);
line_editor->set_theme_type_variation("TreeLineEdit");
line_editor->set_v_size_flags(SIZE_EXPAND_FILL);
line_editor->hide();
popup_editor_vb->add_child(line_editor);