From 6cffef87d26a9aad1ce3394095851f1b3056d61c Mon Sep 17 00:00:00 2001 From: Richard Kimberly Heck Date: Sat, 29 Jul 2023 12:34:38 -0400 Subject: [PATCH] Fix silly mistake in 04fc48d79 --- src/insets/InsetRef.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.39.5