Commit cf984ae0 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

Поправил баг http://bugzserver/show_bug.cgi?id=26208 (при undo/redo в ячейке...

Поправил баг http://bugzserver/show_bug.cgi?id=26208 (при undo/redo в ячейке удалялся выделенный текст)

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@58354 954022d7-b5bf-4e40-9824-e11837661b57
parent 41c00f37
......@@ -1617,6 +1617,10 @@
}
t.undoMode = true;
if (t.selectionBegin !== t.selectionEnd) {
t.selectionBegin = t.selectionEnd = -1;
t._cleanSelection();
}
action.fn.apply(t, action.args);
t.undoMode = false;
};
......
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