Skip to content

Commit fdaf25a

Browse files
authored
6848 fixed the issue of clicking collapse all expanding tree (#6993)
1 parent 14bf8f9 commit fdaf25a

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ Eiswindyeti
113113
Ellen Reitmayr
114114
Erdem Derebasoglu
115115
Erdem Derebaşoğlu
116+
Eric Lau
116117
Erik Putrycz
117118
Ervin Kolenovic
118119
Escoul

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ inserting new citations in a OpenOffic/LibreOffice document. [#6957](https://git
5050
- We fixed an issue where it was impossible to connect to OpenOffice/LibreOffice on Mac OSX. [#6970](https://github.com/JabRef/jabref/pull/6970)
5151
- 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)
5252
- We fixed an issue where identity column header had incorrect foreground color in the Dark theme. [#6796](https://github.com/JabRef/jabref/issues/6796)
53+
- 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)
5354

5455
### Removed
5556

src/main/java/org/jabref/gui/externalfiles/FindUnlinkedFilesDialog.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ private void initialize() {
165165
buttonOptionCollapseAll.setOnAction(event -> {
166166
CheckBoxTreeItem<FileNodeWrapper> root = (CheckBoxTreeItem<FileNodeWrapper>) tree.getRoot();
167167
expandTree(root, false);
168-
root.setExpanded(true);
168+
root.setExpanded(false);
169169
});
170170

171171
textfieldDirectoryPath = new TextField();

0 commit comments

Comments
 (0)