Skip to content

Commit e3fc4fc

Browse files
dawidmSiedlerchr
andauthored
Fix: in entry types editor selected field is not removed after first click (#6941)
* Fix: in entry types editor selected field is not removed after first click fixes #6934 * Update CHANGELOG.md Co-authored-by: Christoph <[email protected]>
1 parent 0480a89 commit e3fc4fc

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ Note that this project **does not** adhere to [Semantic Versioning](http://semve
3737
- We fixed the wrong behavior that font size changes are not reflected in dialogs. [#6039](https://github.com/JabRef/jabref/issues/6039)
3838
- 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)
3939
- 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).
40+
- We fixed an issue where a selected field was not removed after the first click in the custom entry types dialog [#6934](https://github.com/JabRef/jabref/issues/6934)
4041
- We fixed an issue where a remove icon was shown for standard entry types in the custom entry types dialog [6906](https://github.com/JabRef/jabref/issues/6906)
4142

4243
### Removed

src/main/java/org/jabref/gui/customentrytypes/CustomizeEntryTypeDialogView.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ private void setupTable() {
160160

161161
fieldTypeActionColumn.setSortable(false);
162162
fieldTypeActionColumn.setReorderable(false);
163+
fieldTypeActionColumn.setEditable(false);
163164
fieldTypeActionColumn.setCellValueFactory(cellData -> cellData.getValue().fieldName());
164165

165166
new ValueTableCellFactory<FieldViewModel, String>()

0 commit comments

Comments
 (0)