Fix edit-mode interfering with brush swap color

D5353 by @robert-wallis
This commit is contained in:
Campbell Barton 2019-07-30 15:37:45 +10:00
parent 369b574fd5
commit d2063f7bc3
Notes: blender-bot 2023-02-14 03:03:03 +01:00
Referenced by issue #67918, Grease Pencil Proportional Edit "Connected Only" fails to delimit unconnected strokes if they are selected
1 changed files with 5 additions and 2 deletions

View File

@ -1246,8 +1246,7 @@ static int brush_colors_flip_exec(bContext *C, wmOperator *UNUSED(op))
Scene *scene = CTX_data_scene(C);
UnifiedPaintSettings *ups = &scene->toolsettings->unified_paint_settings;
ViewLayer *view_layer = CTX_data_view_layer(C);
Paint *paint = BKE_paint_get_active(scene, view_layer);
Paint *paint = BKE_paint_get_active_from_context(C);
Brush *br = BKE_paint_brush(paint);
if (ups->flag & UNIFIED_PAINT_COLOR) {
@ -1256,6 +1255,10 @@ static int brush_colors_flip_exec(bContext *C, wmOperator *UNUSED(op))
else if (br) {
swap_v3_v3(br->rgb, br->secondary_rgb);
}
else {
return OPERATOR_CANCELLED;
}
WM_event_add_notifier(C, NC_BRUSH | NA_EDITED, br);
return OPERATOR_FINISHED;