mirror of
https://github.com/ONLYOFFICE/sdkjs.git
synced 2026-04-07 14:09:12 +08:00
Fix bug #79173
This commit is contained in:
committed by
Sergey Luzyanin
parent
15dd639b63
commit
36a5a30b59
@ -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);
|
||||
|
||||
Reference in New Issue
Block a user