From 4a8d85a325c37bcc8a9fbd5f274ca4e9f7ef47ee Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 2 Mar 2022 21:59:14 +1100 Subject: Fix modal item open/close in the outliner since removing tweak events Correct check for left-mouse event which assumed the alternative was a tweak event. Also remove print added by accident. --- source/blender/editors/space_outliner/outliner_edit.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/space_outliner') diff --git a/source/blender/editors/space_outliner/outliner_edit.cc b/source/blender/editors/space_outliner/outliner_edit.cc index a6ac2a5a1f3..6916f5fe502 100644 --- a/source/blender/editors/space_outliner/outliner_edit.cc +++ b/source/blender/editors/space_outliner/outliner_edit.cc @@ -240,7 +240,7 @@ static int outliner_item_openclose_invoke(bContext *C, wmOperator *op, const wmE outliner_tag_redraw_avoid_rebuild_on_open_change(space_outliner, region); /* Only toggle once for single click toggling */ - if (event->type == LEFTMOUSE) { + if ((event->type == LEFTMOUSE) && (event->val != KM_CLICK_DRAG)) { return OPERATOR_FINISHED; } -- cgit v1.2.3