From: Abdelrazak Younes Date: Mon, 2 Oct 2006 15:40:39 +0000 (+0000) Subject: A fix from Ozgur Ugras BARAN: X-Git-Tag: 1.6.10~12483 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=481e6a3ac758c605aa914eede19e55b706788fb8;p=lyx.git A fix from Ozgur Ugras BARAN: 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) git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15199 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/frontends/LyXView.C b/src/frontends/LyXView.C index f6a2b9302e..0eeaacee03 100644 --- a/src/frontends/LyXView.C +++ b/src/frontends/LyXView.C @@ -252,7 +252,7 @@ void LyXView::showDialogWithData(string const & name, void LyXView::showInsetDialog(string const & name, string const & data, InsetBase * inset) { - getDialogs().show(name, data, 0); + getDialogs().show(name, data, inset); }