diff --git a/Userland/Applications/Spreadsheet/SpreadsheetModel.cpp b/Userland/Applications/Spreadsheet/SpreadsheetModel.cpp index c19de771172..df3607687ff 100644 --- a/Userland/Applications/Spreadsheet/SpreadsheetModel.cpp +++ b/Userland/Applications/Spreadsheet/SpreadsheetModel.cpp @@ -194,7 +194,7 @@ void SheetModel::set_data(const GUI::ModelIndex& index, const GUI::Variant& valu void SheetModel::update() { m_sheet->update(); - did_update(UpdateFlag::DontInvalidateIndices); + did_update(UpdateFlag::DontInvalidateIndices | Model::UpdateFlag::DontResizeColumns); } CellsUndoCommand::CellsUndoCommand(Vector cell_changes)