diff options
author | Eric M <itsjusteza@gmail.com> | 2020-09-17 11:40:00 +1000 |
---|---|---|
committer | Eric M <itsjusteza@gmail.com> | 2020-11-23 21:14:26 +1000 |
commit | efe5c250d5c0f749ed594ddd04fa76ca20abe4a4 (patch) | |
tree | 4f646765d7c89472d5d516bc84803e6c7af5e964 /editor/inspector_dock.cpp | |
parent | fc806409f491f7585eecd0f01bd50609dfc93729 (diff) | |
download | redot-engine-efe5c250d5c0f749ed594ddd04fa76ca20abe4a4.tar.gz |
Implement new shortcuts system.
unhandled_key_input changed to unhandled_button_input. Controls can set a 'shortcut_context' which they can then use to determine if their shortcuts should be triggered or not, based on if the viewport's focused GUI control is a child of their 'shortcut context'.
Diffstat (limited to 'editor/inspector_dock.cpp')
-rw-r--r-- | editor/inspector_dock.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/inspector_dock.cpp b/editor/inspector_dock.cpp index c88cd8ea5f..a7afba6c0d 100644 --- a/editor/inspector_dock.cpp +++ b/editor/inspector_dock.cpp @@ -554,6 +554,7 @@ InspectorDock::InspectorDock(EditorNode *p_editor, EditorData &p_editor_data) { node_info_hb->add_child(editor_path); object_menu = memnew(MenuButton); + object_menu->set_shortcut_context(this); object_menu->set_icon(get_theme_icon("Tools", "EditorIcons")); node_info_hb->add_child(object_menu); object_menu->set_tooltip(TTR("Object properties.")); |