Skip to content

Commit

Permalink
Merge pull request #241 from JabRef/set_default_encoding_to_utf8
Browse files Browse the repository at this point in the history
Set default encoding to UTF-8
  • Loading branch information
koppor committed Oct 15, 2015
2 parents c9ac0c2 + f6a4a97 commit 2c3bef9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/net/sf/jabref/JabRefPreferences.java
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ private JabRefPreferences() {
defaults.put(HIGHLIGHT_GROUPS_MATCHING_ALL, Boolean.FALSE);
defaults.put(TOOLBAR_VISIBLE, Boolean.TRUE);
defaults.put(SEARCH_PANEL_VISIBLE, Boolean.FALSE);
defaults.put(DEFAULT_ENCODING, System.getProperty("file.encoding"));
defaults.put(DEFAULT_ENCODING, "UTF-8");
defaults.put(GROUPS_VISIBLE_ROWS, 8);
defaults.put(DEFAULT_OWNER, System.getProperty("user.name"));
defaults.put(PRESERVE_FIELD_FORMATTING, Boolean.FALSE);
Expand Down

0 comments on commit 2c3bef9

Please sign in to comment.