do not expand tree on clearing filter if V2 session

java-i2p-warning
Zlatin Balevsky 2022-08-29 08:24:21 +01:00
parent cc0291e847
commit f626386a3d
No known key found for this signature in database
GPG Key ID: A72832072D525E41
1 changed files with 2 additions and 1 deletions

View File

@ -93,7 +93,8 @@ class BrowseModel {
root.add(topLevel)
}
view.refreshResults()
view.expandUnconditionally()
if (session == null || !session.supportsIncremental())
view.expandUnconditionally()
}
}