Skip to content

Commit

Permalink
Fixed #1534 (#1559)
Browse files Browse the repository at this point in the history
  • Loading branch information
oscargus authored Jul 11, 2016
1 parent 0dfdebb commit 982e565
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ We refer to [GitHub issues](https://github.com/JabRef/jabref/issues) by using `#
- Fixed [#1444](https://github.com/JabRef/jabref/issues/1444): Implement getExtension and getDescription for importers.
- Fixed [#1507](https://github.com/JabRef/jabref/issues/1507): Keywords are now separated by the delimiter specified in the preferences
- Fixed [#1484](https://github.com/JabRef/jabref/issues/1484): HTML export handles some UTF characters wrong
- Fixed [#1534](https://github.com/JabRef/jabref/issues/1534): "Mark entries imported into database" does not work correctly

### Removed

Expand Down
4 changes: 1 addition & 3 deletions src/main/java/net/sf/jabref/gui/EntryMarker.java
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,6 @@ public static int isMarked(BibEntry be) {
}

public static boolean shouldMarkEntries() {
return (Globals.prefs.getBoolean(JabRefPreferences.MARK_IMPORTED_ENTRIES)
&& (Globals.prefs.getBoolean(JabRefPreferences.USE_OWNER)
|| Globals.prefs.getBoolean(JabRefPreferences.USE_TIME_STAMP)));
return Globals.prefs.getBoolean(JabRefPreferences.MARK_IMPORTED_ENTRIES);
}
}

0 comments on commit 982e565

Please sign in to comment.