Expand LineEdit with metadata name in AddMetadataDialog

This commit is contained in:
arkology
2025-09-17 13:55:35 +00:00
parent adb2ec043e
commit 6d0ac84a46

View File

@ -46,6 +46,7 @@ AddMetadataDialog::AddMetadataDialog() {
add_meta_name = memnew(LineEdit);
add_meta_name->set_accessibility_name(TTRC("Name:"));
add_meta_name->set_custom_minimum_size(Size2(200 * EDSCALE, 1));
add_meta_name->set_h_size_flags(Control::SIZE_EXPAND_FILL);
hbc->add_child(add_meta_name);
hbc->add_child(memnew(Label(TTR("Type:"))));