Commit 15567538 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

Добавил DisplayName для дефалтовых стилей

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@48387 954022d7-b5bf-4e40-9824-e11837661b57
parent 535ffa6b
This diff is collapsed.
...@@ -1558,7 +1558,7 @@ ...@@ -1558,7 +1558,7 @@
options = options =
{ {
name: i, name: i,
displayName: i, displayName: defaultStyles[i].displayName,
type: 'custom', type: 'custom',
image: this._drawSmallIconTable(canvas,customStyles[i]) image: this._drawSmallIconTable(canvas,customStyles[i])
}; };
...@@ -1577,7 +1577,7 @@ ...@@ -1577,7 +1577,7 @@
options = options =
{ {
name: i, name: i,
displayName: i, displayName: defaultStyles[i].displayName,
type: 'default', type: 'default',
image: this._drawSmallIconTable(canvas,defaultStyles[i]) image: this._drawSmallIconTable(canvas,defaultStyles[i])
}; };
......
...@@ -8785,8 +8785,11 @@ ...@@ -8785,8 +8785,11 @@
if (selectRange) { if (selectRange) {
// ToDo стоит менять и лист // ToDo стоит менять и лист
selectRange = this.model.getRange2(selectRange.range); selectRange = this.model.getRange2(selectRange.range);
if (null !== selectRange) if (null !== selectRange) {
this.activeRange = selectRange.getBBox0(); this.activeRange = selectRange.getBBox0();
this.activeRange.startCol = this.activeRange.c1;
this.activeRange.startRow = this.activeRange.r1;
}
} }
} }
} }
......
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