Skip to content

Commit

Permalink
Fix #4703: Newline format couldn't be changed
Browse files Browse the repository at this point in the history
Fixes #4703.
  • Loading branch information
tobiasdiez authored Mar 5, 2019
1 parent fb9f3ec commit 4b401fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/jabref/gui/preferences/FileTab.java
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ public void storeSettings() {
}

String newline;
switch (newlineSeparator.getPromptText()) {
switch (newlineSeparator.getValue()) {
case "CR":
newline = "\r";
break;
Expand Down

0 comments on commit 4b401fa

Please sign in to comment.