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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-11-27 17:04:42 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-11-27 17:04:42 +0300
commit86e88df03c5e8826ae0fde223c982e69b6ff7983 (patch)
treeab82f39f95f60c657f701a2188a9a3f2cff49d86 /source/blender/editors/space_outliner
parentb71006ceedbe4c7e6fa66c90696bcbd19b389f19 (diff)
Fix outliner click select with tablets, after recent changes.
Diffstat (limited to 'source/blender/editors/space_outliner')
-rw-r--r--source/blender/editors/space_outliner/outliner_edit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_outliner/outliner_edit.c b/source/blender/editors/space_outliner/outliner_edit.c
index ce89e7e6d66..9d94947f61e 100644
--- a/source/blender/editors/space_outliner/outliner_edit.c
+++ b/source/blender/editors/space_outliner/outliner_edit.c
@@ -99,7 +99,7 @@ static int outliner_highlight_update(bContext *C, wmOperator *UNUSED(op), const
/* Drag and drop does own highlighting. */
wmWindowManager *wm = CTX_wm_manager(C);
if (wm->drags.first) {
- return (OPERATOR_CANCELLED | OPERATOR_PASS_THROUGH);
+ return OPERATOR_PASS_THROUGH;
}
ARegion *ar = CTX_wm_region(C);
@@ -121,7 +121,7 @@ static int outliner_highlight_update(bContext *C, wmOperator *UNUSED(op), const
ED_region_tag_redraw_no_rebuild(ar);
}
- return (OPERATOR_FINISHED | OPERATOR_PASS_THROUGH);
+ return OPERATOR_PASS_THROUGH;
}
void OUTLINER_OT_highlight_update(wmOperatorType *ot)