From: Richard Kimberly Heck Date: Fri, 28 Jul 2023 16:10:21 +0000 (-0400) Subject: Fix bug #12337. Reorder plural and caps indicators. X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=5164b2853e135fedb6a0c58513c869748b1f3d34;p=features.git Fix bug #12337. Reorder plural and caps indicators. --- 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(": ");