Commit 7508211e authored by Alexander.Trofimov's avatar Alexander.Trofimov

fix selection math info

count numbers > 0 and count values > 1
parent 8d23d688
......@@ -6849,7 +6849,7 @@
});
// Показываем только данные для 2-х или более ячеек (http://bugzilla.onlyoffice.com/show_bug.cgi?id=24115)
if (1 < oSelectionMathInfo.count) {
if (1 < oSelectionMathInfo.count && 0 < oSelectionMathInfo.countNumbers) {
// Мы должны отдавать в формате активной ячейки
var activeCell = this.model.selectionRange.activeCell;
var numFormat = this.model.getRange3(activeCell.row, activeCell.col,
......
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