From 0b9a53172af39c40b08b4e673d572a5b6e90f013 Mon Sep 17 00:00:00 2001 From: Siedlerchr Date: Fri, 13 Oct 2017 18:23:46 +0200 Subject: [PATCH 1/2] Fix exception/freezing on EntryChangedEvent in Entry Editor --- src/main/java/org/jabref/gui/entryeditor/EntryEditor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/jabref/gui/entryeditor/EntryEditor.java b/src/main/java/org/jabref/gui/entryeditor/EntryEditor.java index 4ff62fad14e..77fac58979e 100644 --- a/src/main/java/org/jabref/gui/entryeditor/EntryEditor.java +++ b/src/main/java/org/jabref/gui/entryeditor/EntryEditor.java @@ -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() { From bcc13baeeb3d318a5655d0c6c8701d5cbc458dc8 Mon Sep 17 00:00:00 2001 From: Siedlerchr Date: Fri, 13 Oct 2017 18:30:29 +0200 Subject: [PATCH 2/2] add changelog entry --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b556eb4a6c..231d8ec12f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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