Commit 37632b39 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

Bug 25116 - [CoEdit] Юзер получает неверные значения во фрейме диаграммы

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@57040 954022d7-b5bf-4e40-9824-e11837661b57
parent 2d4d44c4
...@@ -15693,7 +15693,7 @@ CNumericPoint.prototype = ...@@ -15693,7 +15693,7 @@ CNumericPoint.prototype =
} }
case historyitem_NumericPoint_SetVal: case historyitem_NumericPoint_SetVal:
{ {
writeDouble(w, data.newPr); writeString(w, data.newPr + "");
break; break;
} }
} }
...@@ -15730,7 +15730,7 @@ CNumericPoint.prototype = ...@@ -15730,7 +15730,7 @@ CNumericPoint.prototype =
} }
case historyitem_NumericPoint_SetVal: case historyitem_NumericPoint_SetVal:
{ {
this.val = readDouble(r); this.val = parseFloat(readString(r));
break; break;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment