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-07-18 23:23:29 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-07-18 23:23:29 +0300
commite81dc0b7bc1c9373b5b4029c32b1d066429e5db8 (patch)
treefadea845f5fe7b3fdce9bd95ff60603e581e42a7
parent5078b9d2d08a34ae3786100c2301ea960165e7f2 (diff)
Fix E key in Python console not working after recent changes.
-rw-r--r--source/blender/editors/interface/interface_eyedropper_color.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/interface/interface_eyedropper_color.c b/source/blender/editors/interface/interface_eyedropper_color.c
index bcb60013eda..5eb4359607a 100644
--- a/source/blender/editors/interface/interface_eyedropper_color.c
+++ b/source/blender/editors/interface/interface_eyedropper_color.c
@@ -297,7 +297,7 @@ static int eyedropper_invoke(bContext *C, wmOperator *op, const wmEvent *UNUSED(
}
else {
eyedropper_exit(C, op);
- return OPERATOR_CANCELLED;
+ return OPERATOR_PASS_THROUGH;
}
}
@@ -315,7 +315,7 @@ static int eyedropper_exec(bContext *C, wmOperator *op)
return OPERATOR_FINISHED;
}
else {
- return OPERATOR_CANCELLED;
+ return OPERATOR_PASS_THROUGH;
}
}