A trivial (looking) patch to correct inset behavior, which is broken with revision 15068. Without this patch, it is not possible to modify an existing inset. All modifications processed as new index. (see lyxfunc.C:1420)
I will be glad if somebody review the attached patch (and submit to svn if it is correct ) ugras
Index: LyXView.C =================================================================== --- LyXView.C (revision 15197) +++ LyXView.C (working copy) @@ -252,7 +252,7 @@ void LyXView::showInsetDialog(string const & name, string const & data, InsetBase * inset) { - getDialogs().show(name, data, 0); + getDialogs().show(name, data, inset); }