mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-22 15:40:23 +00:00
Fix typo
This commit is contained in:
parent
5d5c3ea140
commit
689962b1fb
1 changed files with 1 additions and 1 deletions
|
@ -235,7 +235,7 @@ final class FileListComp extends AnchorPane {
|
||||||
});
|
});
|
||||||
|
|
||||||
fileList.getShown().addListener((observable, oldValue, newValue) -> {
|
fileList.getShown().addListener((observable, oldValue, newValue) -> {
|
||||||
PlatformThread.runLaterIfNeededBlocking(() -> {
|
PlatformThread.runLaterIfNeeded(() -> {
|
||||||
table.getItems().setAll(newValue);
|
table.getItems().setAll(newValue);
|
||||||
if (newValue.size() > 0) {
|
if (newValue.size() > 0) {
|
||||||
table.scrollTo(0);
|
table.scrollTo(0);
|
||||||
|
|
Loading…
Reference in a new issue