mirror of
https://github.com/scratchfoundation/scratch-paint.git
synced 2024-12-22 21:42:30 -05:00
Simplify fill-color-2 reducer logic
why my brain hurt???
This commit is contained in:
parent
2218730c11
commit
604b450b5d
1 changed files with 5 additions and 6 deletions
|
@ -24,13 +24,12 @@ const reducer = function (state, action) {
|
|||
return state;
|
||||
}
|
||||
const colors = getColorsFromSelection(action.selectedItems);
|
||||
if (colors.gradientType === GradientTypes.SOLID) {
|
||||
// Gradient type may be solid when multiple gradient types are selected.
|
||||
// In this case, changing the first color should not change the second color.
|
||||
if (colors.fillColor2 === MIXED) return MIXED;
|
||||
return state;
|
||||
// Gradient type may be solid when multiple gradient types are selected.
|
||||
// In this case, changing the first color should not change the second color.
|
||||
if (colors.gradientType !== GradientTypes.SOLID || colors.fillColor2 === MIXED) {
|
||||
return colors.fillColor2;
|
||||
}
|
||||
return colors.fillColor2;
|
||||
return state;
|
||||
}
|
||||
case CLEAR_GRADIENT:
|
||||
return null;
|
||||
|
|
Loading…
Reference in a new issue