[oform] Fix issue with minimization

This commit is contained in:
KirillovIlya
2022-12-23 11:53:29 +03:00
parent 0f7358f40d
commit 902e1f2373

View File

@ -114,7 +114,7 @@
if (undefined === ascColor || null === ascColor) if (undefined === ascColor || null === ascColor)
this.Color = null; this.Color = null;
else else
this.Color = new AscWord.CDocumentColor(ascColor.get_r(), ascColor.get_g(), ascColor.get_b()); this.Color = new AscWord.CDocumentColor(ascColor.asc_getR(), ascColor.asc_getG(), ascColor.asc_getB());
} }
CRoleSettings.prototype.getAscColor = function() CRoleSettings.prototype.getAscColor = function()
{ {