diff options
author | Paul Trojahn <paul.trojahn@gmail.com> | 2019-06-22 20:22:52 +0200 |
---|---|---|
committer | Paul Trojahn <paul.trojahn@gmail.com> | 2019-09-22 12:06:24 +0200 |
commit | ba24bc1e0406205288e59fdea095f84320e6cc6a (patch) | |
tree | 91682ea71e9b5890108085fa40ec6a2533710e74 /editor/plugins/text_editor.h | |
parent | d1a062662fb1da17cb9aec92e8b218929cb26fd6 (diff) | |
download | redot-engine-ba24bc1e0406205288e59fdea095f84320e6cc6a.tar.gz |
Support menu key in TextEdit and LineEdit controls
Related to #15542
Diffstat (limited to 'editor/plugins/text_editor.h')
-rw-r--r-- | editor/plugins/text_editor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/text_editor.h b/editor/plugins/text_editor.h index c8b49a61e0..7d441a187d 100644 --- a/editor/plugins/text_editor.h +++ b/editor/plugins/text_editor.h @@ -101,7 +101,7 @@ protected: void _notification(int p_what); void _edit_option(int p_op); - void _make_context_menu(bool p_selection, bool p_can_fold, bool p_is_folded); + void _make_context_menu(bool p_selection, bool p_can_fold, bool p_is_folded, Vector2 p_position); void _text_edit_gui_input(const Ref<InputEvent> &ev); Map<String, SyntaxHighlighter *> highlighters; |