I am working on a class which descends from ListView to show a horizontal, scrollable list of items. When setting
.scroll-bar {
-fx-hbar-policy: never;
}
I would expect the horizontal scroll bar of my list view to disappear it does not. I tried
.scroll-bar:horizontal {
-fx-hbar-policy: never;
}
and
.myListView .scroll-bar {
-fx-hbar-policy: never;
}
as well but to no avail, so I think there may be a bug here.
.scroll-bar {
-fx-hbar-policy: never;
}
I would expect the horizontal scroll bar of my list view to disappear it does not. I tried
.scroll-bar:horizontal {
-fx-hbar-policy: never;
}
and
.myListView .scroll-bar {
-fx-hbar-policy: never;
}
as well but to no avail, so I think there may be a bug here.