mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 10:58:52 +00:00
Do not update refs on new label creation (#8147)
This assures that refs to existing labels are not being touched if a new label with a duplicate name is created, and the name then changed by the duplicate checker. Branch candidate.
This commit is contained in:
parent
f5b4cd90a3
commit
86cccf1077
@ -55,9 +55,11 @@ InsetLabel::InsetLabel(Buffer * buf, InsetCommandParams const & p)
|
||||
|
||||
void InsetLabel::initView()
|
||||
{
|
||||
// FIXME: This seems to be used only for inset creation so
|
||||
// we probably just need to call updateLabel() here.
|
||||
updateLabelAndRefs(getParam("name"));
|
||||
// This seems to be used only for inset creation.
|
||||
// Therefore we do not update refs here, since this would
|
||||
// erroneously change refs from existing duplicate labels
|
||||
// (#8141).
|
||||
updateLabel(getParam("name"));
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user