Merge pull request #104849 from syntaxerror247/overflow

Fix input config dialog overflow on Android Editor
This commit is contained in:
Thaddeus Crews 2025-04-01 08:01:33 -05:00
commit dee3ee77c6
No known key found for this signature in database
GPG Key ID: 8C6E5FEB5FC03CCC

View File

@ -674,7 +674,6 @@ InputEventConfigurationDialog::InputEventConfigurationDialog() {
input_list_tree = memnew(Tree);
input_list_tree->set_auto_translate_mode(AUTO_TRANSLATE_MODE_DISABLED);
input_list_tree->set_custom_minimum_size(Size2(0, 300 * EDSCALE)); // Min height for tree
input_list_tree->connect("item_activated", callable_mp(this, &InputEventConfigurationDialog::_input_list_item_activated));
input_list_tree->connect(SceneStringName(item_selected), callable_mp(this, &InputEventConfigurationDialog::_input_list_item_selected));
input_list_tree->set_v_size_flags(Control::SIZE_EXPAND_FILL);