You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-06 12:20:30 +00:00
fix certain popup close clicks with popup buttons
This commit is contained in:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user