Commit 3d61db76 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

Bug 28449 - Смена Alignment не распознается как операция, требущая сохранения

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@61136 954022d7-b5bf-4e40-9824-e11837661b57
parent 8bd78389
......@@ -3522,31 +3522,37 @@ CPresentation.prototype =
alignLeft : function()
{
this.Slides[this.CurPage] && this.Slides[this.CurPage].graphicObjects.alignLeft(editor.bAlignBySelected);
this.Document_UpdateInterfaceState();
},
alignRight : function()
{
this.Slides[this.CurPage] && this.Slides[this.CurPage].graphicObjects.alignRight(editor.bAlignBySelected);
this.Document_UpdateInterfaceState();
},
alignTop : function()
{
this.Slides[this.CurPage] && this.Slides[this.CurPage].graphicObjects.alignTop(editor.bAlignBySelected);
this.Document_UpdateInterfaceState();
},
alignBottom : function()
{
this.Slides[this.CurPage] && this.Slides[this.CurPage].graphicObjects.alignBottom(editor.bAlignBySelected);
this.Document_UpdateInterfaceState();
},
alignCenter : function()
{
this.Slides[this.CurPage] && this.Slides[this.CurPage].graphicObjects.alignCenter(editor.bAlignBySelected);
this.Document_UpdateInterfaceState();
},
alignMiddle : function()
{
this.Slides[this.CurPage] && this.Slides[this.CurPage].graphicObjects.alignMiddle(editor.bAlignBySelected);
this.Document_UpdateInterfaceState();
},
distributeHor : function()
......
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