From f887bebedad653972dc2e11ba271e5871b929211 Mon Sep 17 00:00:00 2001 From: Dawid Motyka Date: Thu, 24 Sep 2020 12:56:50 +0200 Subject: [PATCH 1/2] Fix: in entry types editor selected field is not removed after first click fixes #6934 --- .../gui/customentrytypes/CustomizeEntryTypeDialogView.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/org/jabref/gui/customentrytypes/CustomizeEntryTypeDialogView.java b/src/main/java/org/jabref/gui/customentrytypes/CustomizeEntryTypeDialogView.java index 38ecf48af78..d203663a724 100644 --- a/src/main/java/org/jabref/gui/customentrytypes/CustomizeEntryTypeDialogView.java +++ b/src/main/java/org/jabref/gui/customentrytypes/CustomizeEntryTypeDialogView.java @@ -141,6 +141,7 @@ private void setupTable() { fieldTypeActionColumn.setSortable(false); fieldTypeActionColumn.setReorderable(false); + fieldTypeActionColumn.setEditable(false); fieldTypeActionColumn.setCellValueFactory(cellData -> cellData.getValue().fieldName()); new ValueTableCellFactory() From 05fbda424e102fba420411d66d853fd9681ddc0d Mon Sep 17 00:00:00 2001 From: Dawid Motyka Date: Thu, 24 Sep 2020 13:13:20 +0200 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bce6d05b888..279b079f624 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -37,6 +37,7 @@ Note that this project **does not** adhere to [Semantic Versioning](http://semve - We fixed the wrong behavior that font size changes are not reflected in dialogs. [#6039](https://github.com/JabRef/jabref/issues/6039) - We fixed an issue where the sort order of the entry table was reset after a restart of JabRef. [#6898](https://github.com/JabRef/jabref/pull/6898) - We fixed an issue where no longer a warning was displayed when inserting references into LibreOffice with an invalid "ReferenceParagraphFormat". [#6907](https://github.com/JabRef/jabref/pull/60907). +- We fixed an issue where in entry types editor selected field was not removed after first click [#6934](https://github.com/JabRef/jabref/issues/6934) ### Removed