This is an easy one: http://bugzilla.lyx.org/show_bug.cgi?id=2377
It is a simple oversight that the tabular cutr buffer is only marked dirty 
for copy, but not for cut.
The attached patch fixes that. It was tested by Simon and goes into trunk 
now. Log message:

InsetTabular::pasteSelection: mark the tabular cut buffer as dirty (bug 
2377)

Jean-Marc, I guess it is also OK for 1.4?


Georg
Index: src/insets/insettabular.C
===================================================================
--- src/insets/insettabular.C	(Revision 13407)
+++ src/insets/insettabular.C	(Arbeitskopie)
@@ -1764,6 +1764,7 @@ bool InsetTabular::pasteSelection(LCurso
 			cur.pos() = 0;
 		}
 	}
+	lyx::cap::dirtyTabularStack(true);
 	return true;
 }
 

Reply via email to