1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:57:44 +00:00

Spreadsheet: Add support for changing multiple cells at once

Just select many cells and use the cell editor! so easy!
This commit is contained in:
AnotherTest 2020-08-27 11:56:26 +04:30 committed by Andreas Kling
parent 7465c51ef2
commit a5a3e5a178
3 changed files with 47 additions and 20 deletions

View file

@ -43,7 +43,7 @@ public:
const Sheet& sheet() const { return *m_sheet; }
Sheet& sheet() { return *m_sheet; }
Function<void(const Position&, Cell&)> on_selection_changed;
Function<void(Vector<Position>&&)> on_selection_changed;
Function<void()> on_selection_dropped;
private: