From: Jürgen Spitzmüller Date: Wed, 12 Nov 2008 18:51:36 +0000 (+0000) Subject: * InsetLabel.cpp: X-Git-Tag: 1.6.10~2644 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=3cc2dda65e1aa4ef87378d6c9a9247ff8ad7ccb7;p=features.git * 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 --- diff --git a/src/insets/InsetLabel.cpp b/src/insets/InsetLabel.cpp index 6a3be71a02..afad8ea989 100644 --- a/src/insets/InsetLabel.cpp +++ b/src/insets/InsetLabel.cpp @@ -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; } diff --git a/status.16x b/status.16x index 71fb883f40..999be826af 100644 --- a/status.16x +++ b/status.16x @@ -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