Changed error tree initialization to allow reselection

This commit is contained in:
samar-01 2023-06-10 15:31:08 -04:00
parent 37d1dfef9d
commit d9e64d7001

View File

@ -1901,6 +1901,7 @@ ScriptEditorDebugger::ScriptEditorDebugger() {
error_tree->set_hide_root(true);
error_tree->set_v_size_flags(SIZE_EXPAND_FILL);
error_tree->set_allow_rmb_select(true);
error_tree->set_allow_reselect(true);
error_tree->connect("item_mouse_selected", callable_mp(this, &ScriptEditorDebugger::_error_tree_item_rmb_selected));
errors_tab->add_child(error_tree);