From 902e1f2373558b30eec4597030bd18c89d658967 Mon Sep 17 00:00:00 2001 From: KirillovIlya Date: Fri, 23 Dec 2022 11:53:29 +0300 Subject: [PATCH] [oform] Fix issue with minimization --- oform/Role.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oform/Role.js b/oform/Role.js index 6b84b9b..69110b9 100644 --- a/oform/Role.js +++ b/oform/Role.js @@ -114,7 +114,7 @@ if (undefined === ascColor || null === ascColor) this.Color = null; 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() {