This commit is contained in:
Eduard Belozertsev
2025-12-23 01:47:03 +07:00
committed by Sergey Luzyanin
parent 15dd639b63
commit 36a5a30b59

View File

@ -21433,10 +21433,10 @@
} else {
color = new AscFormat.CRGBColor();
const components = this.GetRGBA();
color.RGBA.R = components.r;
color.RGBA.G = components.g;
color.RGBA.B = components.b;
color.RGBA.A = components.a;
color.RGBA.R = components['r'];
color.RGBA.G = components['g'];
color.RGBA.B = components['b'];
color.RGBA.A = components['a'];
}
unicolor.setColor(color);