Commit 1af02a5d authored by Ilya Kirillov's avatar Ilya Kirillov

Исправлен баг при открытии файлов.

parent 366abd36
...@@ -4082,8 +4082,6 @@ CDocument.prototype.Cursor_MoveToStartPos = function(AddToSelect) ...@@ -4082,8 +4082,6 @@ CDocument.prototype.Cursor_MoveToStartPos = function(AddToSelect)
this.Controller.MoveCursorToStartPos(AddToSelect); this.Controller.MoveCursorToStartPos(AddToSelect);
this.Document_UpdateInterfaceState();
this.Document_UpdateRulersState();
this.private_UpdateCursorXY(true, true); this.private_UpdateCursorXY(true, true);
}; };
CDocument.prototype.Cursor_MoveToEndPos = function(AddToSelect) CDocument.prototype.Cursor_MoveToEndPos = function(AddToSelect)
...@@ -4092,8 +4090,6 @@ CDocument.prototype.Cursor_MoveToEndPos = function(AddToSelect) ...@@ -4092,8 +4090,6 @@ CDocument.prototype.Cursor_MoveToEndPos = function(AddToSelect)
this.Controller.MoveCursorToEndPos(AddToSelect); this.Controller.MoveCursorToEndPos(AddToSelect);
this.Document_UpdateInterfaceState();
this.Document_UpdateRulersState();
this.private_UpdateCursorXY(true, true); this.private_UpdateCursorXY(true, true);
}; };
CDocument.prototype.Cursor_MoveLeft = function(AddToSelect, Word) CDocument.prototype.Cursor_MoveLeft = function(AddToSelect, Word)
......
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