]> git.lyx.org Git - features.git/commitdiff
Dispay pre- and posttext widgets if non-empty also if unapplied
authorJuergen Spitzmueller <spitz@lyx.org>
Tue, 30 Oct 2018 16:23:08 +0000 (17:23 +0100)
committerJuergen Spitzmueller <spitz@lyx.org>
Tue, 30 Oct 2018 21:18:52 +0000 (22:18 +0100)
Fixes: #11352
(cherry picked from commit b8932afed543421defde7b46e4102a82b4faabe4)

src/frontends/qt4/GuiCitation.cpp
status.23x

index 15bb8dd86e537b31aa8a28609083df3d86ead9d9..638ec7d84da8bae0750230c165d4fa973f241cd5 100644 (file)
@@ -284,7 +284,10 @@ void GuiCitation::updateFormatting(CitationStyle const & currentStyle)
        bool const qualified = currentStyle.hasQualifiedList
                && (rows > 1
                    || !params_["pretextlist"].empty()
-                   || !params_["posttextlist"].empty());
+                   || !params_["posttextlist"].empty()
+                   || !getPreTexts().empty()
+                   || !getPostTexts().empty());
+
        selectedLV->horizontalHeader()->setVisible(qualified);
        selectedLV->setColumnHidden(0, !qualified);
        selectedLV->setColumnHidden(2, !qualified);
index 76a9e7633f327e3e9701cc8ead73360688227a54..b10458ba0276471e2b79e8926b7a64f1c3a87d08 100644 (file)
@@ -176,6 +176,9 @@ What's new
 - Merge paragraphs when pasted into an inset that forbids multiple
   paragraphs (bug 8281).
 
+- Fix display issue of individual pre- and posttext in citation dialog
+  (biblatex only) (bug 11352).
+
 
 * INTERNALS