From: Richard Kimberly Heck Date: Sat, 29 Jul 2023 16:34:38 +0000 (-0400) Subject: Fix silly mistake in 04fc48d79 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=6cffef87d26a9aad1ce3394095851f1b3056d61c;p=features.git Fix silly mistake in 04fc48d79 --- diff --git a/src/insets/InsetRef.cpp b/src/insets/InsetRef.cpp index 7c7a7a57e1..49cf630b78 100644 --- a/src/insets/InsetRef.cpp +++ b/src/insets/InsetRef.cpp @@ -490,9 +490,9 @@ void InsetRef::updateBuffer(ParIterator const & it, UpdateType, bool const /*del if (isCaps) { // up arrow (shift key) symbol label += docstring(1, char_type(0x21E7)); - if (isPlural) - label += from_ascii("+"); } + if (isPlural) + label += from_ascii("+"); } label += from_ascii(": "); break;