From 5164b2853e135fedb6a0c58513c869748b1f3d34 Mon Sep 17 00:00:00 2001 From: Richard Kimberly Heck Date: Fri, 28 Jul 2023 12:10:21 -0400 Subject: [PATCH] Fix bug #12337. Reorder plural and caps indicators. --- 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 ed193f71c7..4473bd7ad6 100644 --- a/src/insets/InsetRef.cpp +++ b/src/insets/InsetRef.cpp @@ -487,11 +487,11 @@ void InsetRef::updateBuffer(ParIterator const & it, UpdateType, bool const /*del if (cmd == "formatted") { bool const isPlural = getParam("plural") == "true"; bool const isCaps = getParam("caps") == "true"; - if (isPlural) - label += from_ascii("+"); if (isCaps) { // up arrow (shift key) symbol label += docstring(1, char_type(0x21E7)); + if (isPlural) + label += from_ascii("+"); } } label += from_ascii(": "); -- 2.39.5