Skip to content

Commit

Permalink
Fixed #1592
Browse files Browse the repository at this point in the history
  • Loading branch information
oscargus committed Jul 17, 2016
1 parent e8cc789 commit 0149318
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ We refer to [GitHub issues](https://github.com/JabRef/jabref/issues) by using `#
- Fixed [#1264](https://github.com/JabRef/jabref/issues/1264): S with caron does not render correctly
- LaTeX to Unicode converter now handles combining accents
- Fixed [#1527](https://github.com/JabRef/jabref/issues/1527): 'Get BibTeX data from DOI' Removes Marking
- Fixed [#1592](https://github.com/JabRef/jabref/issues/1592): LibreOffice: wrong numbers in citation labels

### Removed

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/net/sf/jabref/gui/openoffice/OOBibBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ private List<String> refreshCiteMarkersInternal(List<BibDatabase> databases, OOB
} else {
num.add(j, lastNum + 1);
if (numbers.containsKey(keys[j])) {
num.add(j, numbers.get(keys[j]));
num.set(j, numbers.get(keys[j]));
} else {
numbers.put(keys[j], num.get(j));
lastNum = num.get(j);
Expand Down

0 comments on commit 0149318

Please sign in to comment.