Skip to content

Commit

Permalink
6848 fixed the issue of clicking collapse all expanding tree (#6993)
Browse files Browse the repository at this point in the history
  • Loading branch information
skeric authored Oct 13, 2020
1 parent 14bf8f9 commit fdaf25a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ Eiswindyeti
Ellen Reitmayr
Erdem Derebasoglu
Erdem Derebaşoğlu
Eric Lau
Erik Putrycz
Ervin Kolenovic
Escoul
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ inserting new citations in a OpenOffic/LibreOffice document. [#6957](https://git
- We fixed an issue where it was impossible to connect to OpenOffice/LibreOffice on Mac OSX. [#6970](https://github.com/JabRef/jabref/pull/6970)
- We fixed an issue with the python script used by browser plugins that failed to locate JabRef if not installed in its default location. [#6963](https://github.com/JabRef/jabref/pull/6963/files)
- We fixed an issue where identity column header had incorrect foreground color in the Dark theme. [#6796](https://github.com/JabRef/jabref/issues/6796)
- We fixed an issue where clicking on Collapse All button in the Search for Unlinked Local Files expanded the directory structure erroneously [#6848](https://github.com/JabRef/jabref/issues/6848)

### Removed

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ private void initialize() {
buttonOptionCollapseAll.setOnAction(event -> {
CheckBoxTreeItem<FileNodeWrapper> root = (CheckBoxTreeItem<FileNodeWrapper>) tree.getRoot();
expandTree(root, false);
root.setExpanded(true);
root.setExpanded(false);
});

textfieldDirectoryPath = new TextField();
Expand Down

0 comments on commit fdaf25a

Please sign in to comment.