Remove transparent to transparent gradients. Hide the second color of stroke width 0 gradients again.

This commit is contained in:
DD Liu 2020-08-21 11:23:54 -04:00
parent 35749e5b37
commit 544d833b53

View file

@ -465,11 +465,23 @@ const getColorsFromSelection = function (selectedItems, bitmapMode) {
let strokeColorString = primary; let strokeColorString = primary;
const strokeColor2String = secondary; const strokeColor2String = secondary;
const strokeGradientType = gradientType; let strokeGradientType = gradientType;
if (strokeGradientType !== GradientTypes.SOLID &&
item.strokeColor.gradient.stops.length === 2 &&
item.strokeColor.gradient.stops[0].color.alpha === 0 &&
item.strokeColor.gradient.stops[1].color.alpha === 0) {
// Clear the gradient if both colors are transparent
item.strokeColor = null;
strokeGradientType = GradientTypes.SOLID;
}
// If the item's stroke width is 0, pretend the stroke color is null // If the item's stroke width is 0, pretend the stroke color is null
if (!item.strokeWidth) { if (!item.strokeWidth) {
strokeColorString = null; strokeColorString = null;
// Hide the second color. This way if you choose a second color, remove
// the gradient, and re-add it, your second color selection is preserved.
strokeGradientType = GradientTypes.SOLID;
} }
// Stroke color is fill color in bitmap // Stroke color is fill color in bitmap