]> git.lyx.org Git - lyx.git/commitdiff
Fix non-biblatex style checks
authorJuergen Spitzmueller <spitz@lyx.org>
Sun, 14 Jul 2024 07:39:54 +0000 (09:39 +0200)
committerJuergen Spitzmueller <spitz@lyx.org>
Sun, 14 Jul 2024 07:39:54 +0000 (09:39 +0200)
src/BufferParams.cpp

index acc74f6e0ce5b7353cc2c70f45fccc4620de9aa7..aa538e6d6113689d94d756e2719e4a498ee41db4 100644 (file)
@@ -3799,7 +3799,8 @@ vector<CitationStyle> BufferParams::citeStyles() const
 bool BufferParams::isActiveBiblatexCiteStyle(CitationStyle const & cs) const
 {
        if (!useBiblatex())
-               return false;
+               // outside biblatex, all cite styles are active
+               return true;
 
        if (cs.styles.empty() && cs.nostyles.empty())
                // no restrictions