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

Spreadsheet: Do not clear cells when ctrl-selecting

This commit is contained in:
AnotherTest 2020-08-28 11:10:24 +04:30 committed by Andreas Kling
parent 67dbb56444
commit e0b7833078
2 changed files with 9 additions and 3 deletions

View file

@ -55,6 +55,7 @@ private:
RefPtr<GUI::Label> m_current_cell_label;
RefPtr<GUI::TextEditor> m_cell_value_editor;
RefPtr<GUI::TabWidget> m_tab_widget;
bool m_should_change_selected_cells { false };
OwnPtr<Workbook> m_workbook;
};