Skip to content

Commit

Permalink
Fix exception/freezing on EntryChangedEvent in Entry Editor (#3299)
Browse files Browse the repository at this point in the history
* Fix exception/freezing on EntryChangedEvent in Entry Editor

* add changelog entry
  • Loading branch information
Siedlerchr authored and matthiasgeiger committed Oct 14, 2017
1 parent bfb6108 commit 137c448
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ We refer to [GitHub issues](https://github.com/JabRef/jabref/issues) by using `#

### Fixed
- We fixed an issue where JabRef would not terminated after asking to collect anonymous statistics [#2955 comment](https://github.com/JabRef/jabref/issues/2955#issuecomment-334591123)
- We fixed an issue where JabRef would not shut down when started with the '-n' (No GUI) option.
- We fixed an issue where JabRef would not shut down when started with the '-n' (No GUI) option. [#3247](https://github.com/JabRef/jabref/issues/3247)
- We improved the way metadata is updated in remote databases. [#3235](https://github.com/JabRef/jabref/issues/3235)

- We fixed an issue where JabRef would freeze when trying to replace the original entry after a merge with new information from identifiers like DOI/ISBN etc. [3294](https://github.com/JabRef/jabref/issues/3294)
### Removed


Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/jabref/gui/entryeditor/EntryEditor.java
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ public synchronized void listen(FieldAddedOrRemovedEvent event) {

@Subscribe
public synchronized void listen(EntryChangedEvent event) {
sourceTab.updateSourcePane();
DefaultTaskExecutor.runInJavaFXThread(() -> sourceTab.updateSourcePane());
}

private void rebuildOtherFieldsTab() {
Expand Down

0 comments on commit 137c448

Please sign in to comment.