mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-23 18:24:48 +00:00
InsetMathHull: LFUN_INSET_INSERT: Fix label insertion
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23437 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
6b2d20c8a6
commit
6e3e2ae19b
@ -1176,6 +1176,7 @@ void InsetMathHull::doDispatch(Cursor & cur, FuncRequest & cmd)
|
|||||||
|
|
||||||
case LFUN_INSET_INSERT: {
|
case LFUN_INSET_INSERT: {
|
||||||
//lyxerr << "arg: " << to_utf8(cmd.argument()) << endl;
|
//lyxerr << "arg: " << to_utf8(cmd.argument()) << endl;
|
||||||
|
// FIXME: this should be cleaned up to use InsetLabel methods directly.
|
||||||
string const name = cmd.getArg(0);
|
string const name = cmd.getArg(0);
|
||||||
if (name == "label") {
|
if (name == "label") {
|
||||||
InsetCommandParams p(LABEL_CODE);
|
InsetCommandParams p(LABEL_CODE);
|
||||||
@ -1188,9 +1189,14 @@ void InsetMathHull::doDispatch(Cursor & cur, FuncRequest & cmd)
|
|||||||
numbered(r, true);
|
numbered(r, true);
|
||||||
docstring old = label(r);
|
docstring old = label(r);
|
||||||
if (str != old) {
|
if (str != old) {
|
||||||
cur.bv().buffer().changeRefsIfUnique(old, str,
|
if (label_[r])
|
||||||
REF_CODE);
|
// The label will take care of the reference update.
|
||||||
label(r, str);
|
label(r, str);
|
||||||
|
else {
|
||||||
|
label(r, str);
|
||||||
|
// Newly created inset so initialize it.
|
||||||
|
label_[r]->initView();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user