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 <ideasman42@gmail.com>2019-01-17 08:39:38 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-17 08:39:38 +0300
commitc8e75c2b00cfb7e87bcb800c9acc8f126949749d (patch)
tree30dd08449c059cdc72d37b10359350b20c328860 /source/blender/editors/interface/interface_eyedropper_color.c
parent4a3aac478ce0dd16faea52d224d9a8024cd9ee57 (diff)
Fix T60554: Missing undo push changing color
Operators don't have a good way to skip undo, for now check the button undo flag & return cancelled.
Diffstat (limited to 'source/blender/editors/interface/interface_eyedropper_color.c')
-rw-r--r--source/blender/editors/interface/interface_eyedropper_color.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/source/blender/editors/interface/interface_eyedropper_color.c b/source/blender/editors/interface/interface_eyedropper_color.c
index 580d07aee2c..7bd98669a56 100644
--- a/source/blender/editors/interface/interface_eyedropper_color.c
+++ b/source/blender/editors/interface/interface_eyedropper_color.c
@@ -69,6 +69,7 @@ typedef struct Eyedropper {
PointerRNA ptr;
PropertyRNA *prop;
int index;
+ bool is_undo;
float init_col[3]; /* for resetting on cancel */
@@ -84,7 +85,7 @@ static bool eyedropper_init(bContext *C, wmOperator *op)
Eyedropper *eye = MEM_callocN(sizeof(Eyedropper), __func__);
eye->use_accum = RNA_boolean_get(op->ptr, "use_accumulate");
- UI_context_active_but_prop_get(C, &eye->ptr, &eye->prop, &eye->index);
+ uiBut *but = UI_context_active_but_prop_get(C, &eye->ptr, &eye->prop, &eye->index);
if ((eye->ptr.data == NULL) ||
(eye->prop == NULL) ||
@@ -97,6 +98,8 @@ static bool eyedropper_init(bContext *C, wmOperator *op)
}
op->customdata = eye;
+ eye->is_undo = UI_but_flag_is_set(but, UI_BUT_UNDO);
+
if (RNA_property_subtype(eye->prop) != PROP_COLOR) {
Scene *scene = CTX_data_scene(C);
const char *display_device;
@@ -259,11 +262,15 @@ static int eyedropper_modal(bContext *C, wmOperator *op, const wmEvent *event)
eyedropper_cancel(C, op);
return OPERATOR_CANCELLED;
case EYE_MODAL_SAMPLE_CONFIRM:
+ {
+ const bool is_undo = eye->is_undo;
if (eye->accum_tot == 0) {
eyedropper_color_sample(C, eye, event->x, event->y);
}
eyedropper_exit(C, op);
- return OPERATOR_FINISHED;
+ /* Could support finished & undo-skip. */
+ return is_undo ? OPERATOR_FINISHED : OPERATOR_CANCELLED;
+ }
case EYE_MODAL_SAMPLE_BEGIN:
/* enable accum and make first sample */
eye->accum_start = true;
@@ -343,7 +350,7 @@ void UI_OT_eyedropper_color(wmOperatorType *ot)
ot->poll = eyedropper_poll;
/* flags */
- ot->flag = OPTYPE_BLOCKING | OPTYPE_INTERNAL;
+ ot->flag = OPTYPE_UNDO | OPTYPE_BLOCKING | OPTYPE_INTERNAL;
/* properties */
PropertyRNA *prop;