diff options
| author | Thomas Herzog | 2017-06-20 00:20:21 +0200 |
|---|---|---|
| committer | GitHub | 2017-06-20 00:20:21 +0200 |
| commit | 86407aebc5d13afb4686f254d3bc10f036611d1b (patch) | |
| tree | 6b8f420b4ac9189a1869b070a31aa81b4b36aa22 /editor/plugins/canvas_item_editor_plugin.cpp | |
| parent | bfac7c476d674573bcc94f422d8fd74c4aee2a6b (diff) | |
| parent | aa63fd1551fd99d5936999ad0607f48755dc2963 (diff) | |
| download | godot-86407aebc5d13afb4686f254d3bc10f036611d1b.tar.gz godot-86407aebc5d13afb4686f254d3bc10f036611d1b.tar.zst godot-86407aebc5d13afb4686f254d3bc10f036611d1b.zip | |
Merge pull request #8407 from Jylhis/popup_item_select_hide
Update PopupMenu hiding
Diffstat (limited to 'editor/plugins/canvas_item_editor_plugin.cpp')
| -rw-r--r-- | editor/plugins/canvas_item_editor_plugin.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/plugins/canvas_item_editor_plugin.cpp b/editor/plugins/canvas_item_editor_plugin.cpp index 803e59469..4313c1a91 100644 --- a/editor/plugins/canvas_item_editor_plugin.cpp +++ b/editor/plugins/canvas_item_editor_plugin.cpp @@ -3270,6 +3270,7 @@ CanvasItemEditor::CanvasItemEditor(EditorNode *p_editor) { PopupMenu *p; p = edit_menu->get_popup(); + p->set_hide_on_checkable_item_selection(false); p->add_check_shortcut(ED_SHORTCUT("canvas_item_editor/use_snap", TTR("Use Snap")), SNAP_USE); p->add_check_shortcut(ED_SHORTCUT("canvas_item_editor/show_grid", TTR("Show Grid")), SNAP_SHOW_GRID); p->add_check_shortcut(ED_SHORTCUT("canvas_item_editor/use_rotation_snap", TTR("Use Rotation Snap")), SNAP_USE_ROTATION); @@ -3291,6 +3292,7 @@ CanvasItemEditor::CanvasItemEditor(EditorNode *p_editor) { skeleton_menu->add_separator(); skeleton_menu->add_shortcut(ED_SHORTCUT("canvas_item_editor/skeleton_set_ik_chain", TTR("Make IK Chain")), SKELETON_SET_IK_CHAIN); skeleton_menu->add_shortcut(ED_SHORTCUT("canvas_item_editor/skeleton_clear_ik_chain", TTR("Clear IK Chain")), SKELETON_CLEAR_IK_CHAIN); + skeleton_menu->set_hide_on_checkable_item_selection(false); skeleton_menu->connect("id_pressed", this, "_popup_callback"); /* |
