From 3cc2dda65e1aa4ef87378d6c9a9247ff8ad7ccb7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=BCrgen=20Spitzm=C3=BCller?= Date: Wed, 12 Nov 2008 18:51:36 +0000 Subject: [PATCH] * 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 --- src/insets/InsetLabel.cpp | 3 ++- status.16x | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) 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 -- 2.39.2