commit 9ca0077316388d1dd87bf5a372bcb6306b1e4640
Author: Jean-Marc Lasgouttes <[email protected]>
Date: Fri May 9 15:02:36 2025 +0200
Update buffer after inserting row or column in tabular
---
src/insets/InsetTabular.cpp | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/insets/InsetTabular.cpp b/src/insets/InsetTabular.cpp
index d4d3e4578e..3f7544a4a1 100644
--- a/src/insets/InsetTabular.cpp
+++ b/src/insets/InsetTabular.cpp
@@ -7335,12 +7335,14 @@ void InsetTabular::tabularFeatures(Cursor & cur,
case Tabular::APPEND_ROW:
// append the row into the tabular
tabular.appendRow(row);
+ cur.forceBufferUpdate();
break;
case Tabular::APPEND_COLUMN:
// append the column into the tabular
tabular.appendColumn(column, row);
cur.idx() = tabular.cellIndex(row, column);
+ cur.forceBufferUpdate();
break;
case Tabular::DELETE_ROW:
--
lyx-cvs mailing list
[email protected]
https://lists.lyx.org/mailman/listinfo/lyx-cvs