From c8bcbf0febdc24a9f779c84b2484e456efbf5e77 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 11 Nov 2016 11:47:22 +0300 Subject: [PATCH] [SSE] Fix Bug 33295. --- apps/spreadsheeteditor/main/app/controller/DocumentHolder.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js index 4ac3399de..ab4ba8ee2 100644 --- a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js +++ b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js @@ -821,7 +821,7 @@ define([ if (index_column!==undefined || index_row!==undefined) { var data = dataarray[(index_column!==undefined) ? (index_column-1) : (index_row-1)]; - var str = Common.Utils.String.format((index_column!==undefined) ? this.textChangeColumnWidth : this.textChangeRowHeight, data.asc_getSizeCCOrPt().toFixed(2), data.asc_getSizePx()); + var str = Common.Utils.String.format((index_column!==undefined) ? this.textChangeColumnWidth : this.textChangeRowHeight, data.asc_getSizeCCOrPt().toFixed(2), data.asc_getSizePx().toFixed()); if (row_columnTip.ref && row_columnTip.ref.isVisible()) { if (row_columnTip.text != str) { row_columnTip.text = str;