Skip to content

Commit

Permalink
fix: database mode is always saved as Biblatex (#5211)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-kolb authored Aug 24, 2019
1 parent b44acfa commit 470aa95
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public void setValues() {
if (preferences.getBoolean(JabRefPreferences.BIBLATEX_DEFAULT_MODE)) {
selectedBiblatexModeProperty.setValue(BibDatabaseMode.BIBLATEX);
} else {
selectedBiblatexModeProperty.setValue(BibDatabaseMode.BIBLATEX);
selectedBiblatexModeProperty.setValue(BibDatabaseMode.BIBTEX);
}

inspectionWarningDuplicateProperty.setValue(preferences.getBoolean(JabRefPreferences.WARN_ABOUT_DUPLICATES_IN_INSPECTION));
Expand Down

0 comments on commit 470aa95

Please sign in to comment.