mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
* InsetLabel.cpp:
- no duplicate check for unchanged parameters (bug 5496). git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27403 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
07418711e8
commit
3cc2dda65e
@ -146,7 +146,8 @@ void InsetLabel::doDispatch(Cursor & cur, FuncRequest & cmd)
|
||||
cur.noUpdate();
|
||||
break;
|
||||
}
|
||||
updateCommand(p["name"]);
|
||||
if (p["name"] != params()["name"])
|
||||
updateCommand(p["name"]);
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -71,6 +71,9 @@ What's new
|
||||
- Fix crash when undoing a math operation while the outline pane was open
|
||||
(bug 5491).
|
||||
|
||||
- Fix false duplicate warning for labels when just applying without
|
||||
changing (bug 5496).
|
||||
|
||||
|
||||
* DOCUMENTATION AND LOCALIZATION
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user