fix certain popup close clicks with popup buttons
This commit is contained in:
parent
d055031c73
commit
efc3ffb816
6 changed files with 31 additions and 0 deletions
|
|
@ -1948,6 +1948,7 @@ CustomPropertyEditor::CustomPropertyEditor() {
|
|||
type_button->get_popup()->connect("id_pressed", this, "_type_create_selected");
|
||||
|
||||
menu = memnew(PopupMenu);
|
||||
menu->set_pass_on_modal_close_click(false);
|
||||
add_child(menu);
|
||||
menu->connect("id_pressed", this, "_menu_option");
|
||||
|
||||
|
|
@ -4288,6 +4289,7 @@ PropertyEditor::PropertyEditor() {
|
|||
set_physics_process(true);
|
||||
|
||||
custom_editor = memnew(CustomPropertyEditor);
|
||||
custom_editor->set_pass_on_modal_close_click(false);
|
||||
add_child(custom_editor);
|
||||
|
||||
tree->connect("custom_popup_edited", this, "_custom_editor_request");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue