Commit f2e50540 authored by Alexander.Trofimov's avatar Alexander.Trofimov

Поправил баг

http://bugzserver/show_bug.cgi?id=19426
при применении стиля и повторном применении стиля к ячейке ничего не происходило (только теперь применение стиля к уже имеющемуся такому же стилю приведет к добавлению в undo)

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49014 954022d7-b5bf-4e40-9824-e11837661b57
parent c832ebcf
...@@ -4162,7 +4162,7 @@ Cell.prototype.getType=function(){ ...@@ -4162,7 +4162,7 @@ Cell.prototype.getType=function(){
Cell.prototype.setCellStyle=function(val){ Cell.prototype.setCellStyle=function(val){
var newVal = this.cs._prepareCellStyle(val); var newVal = this.cs._prepareCellStyle(val);
var oRes = this.sm.setCellStyle(this, newVal); var oRes = this.sm.setCellStyle(this, newVal);
if(History.Is_On() && oRes.oldVal != oRes.newVal) { if(History.Is_On()) {
var oldStyleName = this.cs.getStyleNameByXfId(oRes.oldVal); var oldStyleName = this.cs.getStyleNameByXfId(oRes.oldVal);
History.Add(g_oUndoRedoCell, historyitem_Cell_Style, this.ws.getId(), new Asc.Range(0, this.oId.getRow0(), gc_nMaxCol0, this.oId.getRow0()), new UndoRedoData_CellSimpleData(this.oId.getRow0(), this.oId.getCol0(), oldStyleName, val)); History.Add(g_oUndoRedoCell, historyitem_Cell_Style, this.ws.getId(), new Asc.Range(0, this.oId.getRow0(), gc_nMaxCol0, this.oId.getRow0()), new UndoRedoData_CellSimpleData(this.oId.getRow0(), this.oId.getCol0(), oldStyleName, val));
......
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