Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-03-02 13:59:14 +0300
committerFabian Schempp <fabianschempp@googlemail.com>2022-04-11 01:30:24 +0300
commit4a8d85a325c37bcc8a9fbd5f274ca4e9f7ef47ee (patch)
treec3737f7b623a233f48353c7c39e30fb9163533c3 /source/blender/editors/space_outliner
parent079a348bb5bad0bc7c68cfa89e4d3c4380155f26 (diff)
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.
Diffstat (limited to 'source/blender/editors/space_outliner')
-rw-r--r--source/blender/editors/space_outliner/outliner_edit.cc2
1 files changed, 1 insertions, 1 deletions
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;
}