diff --git a/src/BufferParams.cpp b/src/BufferParams.cpp index b709b16a54..827823d8ba 100644 --- a/src/BufferParams.cpp +++ b/src/BufferParams.cpp @@ -394,7 +394,7 @@ BufferParams::BufferParams() papersize = PAPER_DEFAULT; orientation = ORIENTATION_PORTRAIT; use_geometry = false; - biblio_style = "plain"; + biblio_style = string(); use_bibtopic = false; multibib = string(); use_indices = false; @@ -3426,6 +3426,9 @@ bool BufferParams::addCiteEngine(vector const & engine) string const & BufferParams::defaultBiblioStyle() const { + if (!biblio_style.empty()) + return biblio_style; + map const & bs = documentClass().defaultBiblioStyle(); auto cit = bs.find(theCiteEnginesList.getTypeAsString(citeEngineType())); if (cit != bs.end()) diff --git a/status.23x b/status.23x index d86dbd5bff..7f78e1dce3 100644 --- a/status.23x +++ b/status.23x @@ -122,6 +122,9 @@ What's new - Take actual font height into account when drawing placeholder box for graphics (bug 11048). +- Correctly set degault bibliography style in the Document Settings + dialog (bug 11088). + * INTERNALS