fix crash on redo; fix redo and delete line shortcuts

This commit is contained in:
Vadim Lopatin 2015-02-12 16:38:31 +03:00
parent 4ffd0af922
commit 45b1fa3bd1
2 changed files with 3 additions and 2 deletions

View File

@ -1251,7 +1251,7 @@ class EditableContent {
/// redoes last undone change
bool redo(Object source) {
if (!hasUndo)
if (!hasRedo)
return false;
if (_readOnly)
throw new Exception("content is readonly");

View File

@ -376,7 +376,8 @@ class EditWidgetBase : ScrollWidgetBase, EditableContentListener, MenuItemAction
new Action(EditorActions.ToggleLineComment, KeyCode.KEY_DIVIDE, KeyFlag.Control),
new Action(EditorActions.ToggleBlockComment, KeyCode.KEY_DIVIDE, KeyFlag.Control | KeyFlag.Shift),
new Action(EditorActions.DeleteLine, KeyCode.KEY_Y, KeyFlag.Control),
new Action(EditorActions.DeleteLine, KeyCode.KEY_D, KeyFlag.Control),
new Action(EditorActions.DeleteLine, KeyCode.KEY_L, KeyFlag.Control),
new Action(EditorActions.InsertLine, KeyCode.RETURN, KeyFlag.Control),
]);
}