Undo/redo should mark buffer as dirty.

This commit is contained in:
Nathan Vegdahl 2015-01-11 01:04:24 -08:00
parent f56d3f0ad4
commit d02459f647

View File

@ -193,6 +193,8 @@ impl Editor {
self.cursor.update_vis_start(&(self.buffer));
self.move_view_to_cursor();
self.dirty = true;
}
}
@ -204,6 +206,8 @@ impl Editor {
self.cursor.update_vis_start(&(self.buffer));
self.move_view_to_cursor();
self.dirty = true;
}
}