diff --git a/src/mathed/InsetMathGrid.cpp b/src/mathed/InsetMathGrid.cpp index 622633642e..b77a18b016 100644 --- a/src/mathed/InsetMathGrid.cpp +++ b/src/mathed/InsetMathGrid.cpp @@ -766,7 +766,7 @@ void InsetMathGrid::delCol(col_type col) void InsetMathGrid::copyCol(col_type col) { - addCol(col); + addCol(col+1); for (row_type row = 0; row < nrows(); ++row) cells_[row * ncols() + col + 1] = cells_[row * ncols() + col]; }