Avoid crash when using inset-select-all in tabular

When changing cell idx, it is important to set the pit to a reasonable
value.
This commit is contained in:
Jean-Marc Lasgouttes 2019-01-04 13:57:13 +01:00
parent f97c11f4e9
commit a69e01d0b4

View File

@ -1904,10 +1904,12 @@ void BufferView::dispatch(FuncRequest const & cmd, DispatchResult & dr)
// At least one complete cell is selected and inset is a table.
// Select all cells
cur.idx() = 0;
cur.pit() = 0;
cur.pos() = 0;
cur.resetAnchor();
cur.selection(true);
cur.idx() = cur.lastidx();
cur.pit() = cur.lastpit();
cur.pos() = cur.lastpos();
} else {
// select current cell