mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-21 23:20:23 +00:00
Fix alpine linux dir listings being empty
This commit is contained in:
parent
cc9941e276
commit
ae6a3ecb36
1 changed files with 3 additions and 0 deletions
|
@ -67,15 +67,18 @@ public class BrowserFilterComp extends Comp<BrowserFilterComp.Structure> {
|
|||
});
|
||||
|
||||
text.setPrefWidth(0);
|
||||
text.setFocusTraversable(false);
|
||||
button.getStyleClass().add(Styles.FLAT);
|
||||
button.disableProperty().bind(model.getInOverview());
|
||||
expanded.addListener((observable, oldValue, val) -> {
|
||||
if (val) {
|
||||
text.setPrefWidth(250);
|
||||
text.setFocusTraversable(true);
|
||||
button.getStyleClass().add(Styles.RIGHT_PILL);
|
||||
button.getStyleClass().remove(Styles.FLAT);
|
||||
} else {
|
||||
text.setPrefWidth(0);
|
||||
text.setFocusTraversable(false);
|
||||
button.getStyleClass().remove(Styles.RIGHT_PILL);
|
||||
button.getStyleClass().add(Styles.FLAT);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue