* 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:
Jürgen Spitzmüller 2008-11-12 18:51:36 +00:00
parent 07418711e8
commit 3cc2dda65e
2 changed files with 5 additions and 1 deletions

View File

@ -146,7 +146,8 @@ void InsetLabel::doDispatch(Cursor & cur, FuncRequest & cmd)
cur.noUpdate(); cur.noUpdate();
break; break;
} }
updateCommand(p["name"]); if (p["name"] != params()["name"])
updateCommand(p["name"]);
break; break;
} }

View File

@ -71,6 +71,9 @@ What's new
- Fix crash when undoing a math operation while the outline pane was open - Fix crash when undoing a math operation while the outline pane was open
(bug 5491). (bug 5491).
- Fix false duplicate warning for labels when just applying without
changing (bug 5496).
* DOCUMENTATION AND LOCALIZATION * DOCUMENTATION AND LOCALIZATION