Commit 320e188f authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

Bug 28070 - Не передаются свойства текста на панели при навигации по нему с клавиатуры

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@60290 954022d7-b5bf-4e40-9824-e11837661b57
parent 66ebe89f
...@@ -1111,59 +1111,65 @@ CPresentation.prototype = ...@@ -1111,59 +1111,65 @@ CPresentation.prototype =
Cursor_MoveToStartPos : function() Cursor_MoveToStartPos : function()
{ {
this.Slides[this.CurPage] && this.Slides[this.CurPage].graphicObjects.cursorMoveToStartPos(); this.Slides[this.CurPage] && this.Slides[this.CurPage].graphicObjects.cursorMoveToStartPos();
this.Document_UpdateSelectionState();
this.Document_UpdateInterfaceState();
return true; return true;
}, },
Cursor_MoveToEndPos : function() Cursor_MoveToEndPos : function()
{ {
this.Slides[this.CurPage] && this.Slides[this.CurPage].graphicObjects.cursorMoveToEndPos(); this.Slides[this.CurPage] && this.Slides[this.CurPage].graphicObjects.cursorMoveToEndPos();
this.Document_UpdateSelectionState();
this.Document_UpdateInterfaceState();
return true; return true;
}, },
Cursor_MoveLeft : function(AddToSelect, Word) Cursor_MoveLeft : function(AddToSelect, Word)
{ {
this.Slides[this.CurPage] && this.Slides[this.CurPage].graphicObjects.cursorMoveLeft(AddToSelect, Word); this.Slides[this.CurPage] && this.Slides[this.CurPage].graphicObjects.cursorMoveLeft(AddToSelect, Word);
this.Document_UpdateInterfaceState();
return true; return true;
}, },
Cursor_MoveRight : function(AddToSelect, Word) Cursor_MoveRight : function(AddToSelect, Word)
{ {
this.Slides[this.CurPage] && this.Slides[this.CurPage].graphicObjects.cursorMoveRight(AddToSelect, Word); this.Slides[this.CurPage] && this.Slides[this.CurPage].graphicObjects.cursorMoveRight(AddToSelect, Word);
this.Document_UpdateInterfaceState();
return true; return true;
}, },
Cursor_MoveUp : function(AddToSelect) Cursor_MoveUp : function(AddToSelect)
{ {
this.Slides[this.CurPage] && this.Slides[this.CurPage].graphicObjects.cursorMoveUp(AddToSelect); this.Slides[this.CurPage] && this.Slides[this.CurPage].graphicObjects.cursorMoveUp(AddToSelect);
this.Document_UpdateInterfaceState();
return true; return true;
}, },
Cursor_MoveDown : function(AddToSelect) Cursor_MoveDown : function(AddToSelect)
{ {
this.Slides[this.CurPage] && this.Slides[this.CurPage].graphicObjects.cursorMoveDown(AddToSelect); this.Slides[this.CurPage] && this.Slides[this.CurPage].graphicObjects.cursorMoveDown(AddToSelect);
this.Document_UpdateInterfaceState();
return true; return true;
}, },
Cursor_MoveEndOfLine : function(AddToSelect) Cursor_MoveEndOfLine : function(AddToSelect)
{ {
this.Slides[this.CurPage] && this.Slides[this.CurPage].graphicObjects.cursorMoveEndOfLine(AddToSelect); this.Slides[this.CurPage] && this.Slides[this.CurPage].graphicObjects.cursorMoveEndOfLine(AddToSelect);
this.Document_UpdateInterfaceState();
return true; return true;
}, },
Cursor_MoveStartOfLine : function(AddToSelect) Cursor_MoveStartOfLine : function(AddToSelect)
{ {
this.Slides[this.CurPage] && this.Slides[this.CurPage].graphicObjects.cursorMoveStartOfLine(AddToSelect); this.Slides[this.CurPage] && this.Slides[this.CurPage].graphicObjects.cursorMoveStartOfLine(AddToSelect);
this.Document_UpdateInterfaceState();
return true; return true;
}, },
Cursor_MoveAt : function( X, Y, AddToSelect ) Cursor_MoveAt : function( X, Y, AddToSelect )
{ {
this.Slides[this.CurPage] && this.Slides[this.CurPage].graphicObjects.cursorMoveAt(X, Y, AddToSelect); this.Slides[this.CurPage] && this.Slides[this.CurPage].graphicObjects.cursorMoveAt(X, Y, AddToSelect);
this.Document_UpdateInterfaceState();
return true; return true;
}, },
......
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