]> git.lyx.org Git - features.git/commitdiff
Fix silly mistake in 04fc48d79
authorRichard Kimberly Heck <rikiheck@lyx.org>
Sat, 29 Jul 2023 16:34:38 +0000 (12:34 -0400)
committerRichard Kimberly Heck <rikiheck@lyx.org>
Sat, 29 Jul 2023 16:34:38 +0000 (12:34 -0400)
src/insets/InsetRef.cpp

index 7c7a7a57e19a6f663a639f88de4c73d1a6a57585..49cf630b78b6ed0b97d4ef8c5522586cc9a69da9 100644 (file)
@@ -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;