Commit a7b41b35 authored by Anna.Pavlova's avatar Anna.Pavlova Committed by Alexander.Trofimov

1. Поправила cursor_moveLeft/cursor_moveLeft (при различных RunPrp в контенте

логическая позиция курсора выставляется теперь как в Ворде)
2. Исправила баг при добавление текста в начале формулы, когда первый элемент - мат объект

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@52960 954022d7-b5bf-4e40-9824-e11837661b57
parent 946b98db
......@@ -91,6 +91,7 @@ CMathBase.prototype =
{
this.CtrPrp.Merge(runPrp); // only runPrp for paragraph
},
getCtrPrp: function()
{
var ctrPrp = new CTextPr();
......@@ -117,13 +118,13 @@ CMathBase.prototype =
return rPrp;
},
addRPrp: function(rPrp)
setRPrp: function(rPrp)
{
for(var i=0; i < this.nRow; i++)
for(var j = 0; j < this.nCol; j++)
{
if( !this.elements[i][j].IsJustDraw())
this.elements[i][j].addRPrp(rPrp);
this.elements[i][j].setRPrp(rPrp);
}
},
/////////
......
This diff is collapsed.
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