diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-05-28 10:20:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-28 10:20:59 +0200 |
commit | 2f1de365fef104f6d430a2e35bc5376f4131af4d (patch) | |
tree | d31b2aa9c3240bb7ea28e93633e397bdc745276a /editor/plugins | |
parent | 254286af367e3a9726cd13db11f5fa6de9c92a74 (diff) | |
parent | 3b5112567af4537f48fc1960156cd1355f471c15 (diff) |
Merge pull request #29231 from AlexHoratio/method_list_drag_fix
Fix method list to no longer forwards drag commands to script list
Diffstat (limited to 'editor/plugins')
-rw-r--r-- | editor/plugins/script_editor_plugin.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/editor/plugins/script_editor_plugin.cpp b/editor/plugins/script_editor_plugin.cpp index 38985a2b2c..839c9483d7 100644 --- a/editor/plugins/script_editor_plugin.cpp +++ b/editor/plugins/script_editor_plugin.cpp @@ -3055,7 +3055,6 @@ ScriptEditor::ScriptEditor(EditorNode *p_editor) { members_overview->set_custom_minimum_size(Size2(0, 90) * EDSCALE); //need to give a bit of limit to avoid it from disappearing members_overview->set_v_size_flags(SIZE_EXPAND_FILL); members_overview->set_allow_rmb_select(true); - members_overview->set_drag_forwarding(this); help_overview = memnew(ItemList); overview_vbox->add_child(help_overview); |