In LyXFunc::dispatch, case LFUN_INSET_APPLY, there's an update call missing. 
You see it when you apply changes from an inset dialog. You have to do some 
keyboard action until the changes get visible.

The attached patch adds the update call.

OK?

Jürgen
Index: lyxfunc.C
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/lyxfunc.C,v
retrieving revision 1.653
diff -u -r1.653 lyxfunc.C
--- lyxfunc.C	4 May 2005 11:21:13 -0000	1.653
+++ lyxfunc.C	6 May 2005 09:44:14 -0000
@@ -1352,6 +1352,7 @@
 				FuncRequest fr(LFUN_INSET_INSERT, argument);
 				dispatch(fr);
 			}
+			update = true;
 			break;
 		}
 

Reply via email to