1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:27:43 +00:00

Spreadsheet: Implement undo functionality where missing

Implement undo/redo functionality in the Spreadsheet application
for the "extend" function, the drag-and-drop function, and when
copying and pasting.
This commit is contained in:
martinfalisse 2022-04-11 17:05:23 +02:00 committed by Ali Mohammad Pur
parent 22575c9370
commit 356eca7e33
5 changed files with 28 additions and 9 deletions

View file

@ -30,6 +30,7 @@ public:
void update();
Function<void(Cell&, String&)> on_cell_data_change;
Function<void(Vector<CellChange>)> on_cells_data_change;
private:
explicit SheetModel(Sheet& sheet)