-
The scrollbar on the right side of the table is very small/thin. |
Beta Was this translation helpful? Give feedback.
Answered by
kkoreilly
Aug 12, 2024
Replies: 1 comment 4 replies
-
Are you referring to the scrollbar width or handle height? The handle height of the scrollbar is based on the amount of content with a lower bound, but we could increase that minimum value, which would increase the scrollbar handle height. You can change the width of the scrollbar for a single table with this code (I will change this to be easier now by making the value inherited): tree.AddChildInit(tb, "grid", func(w *core.ListGrid) {
w.Styler(func(s *styles.Style) {
s.ScrollBarWidth.Dp(50) // or any other value
})
}) Or for all scrollbars with this code: styles.ScrollBarWidthDefault = 50 // or any other value |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
OK. In answering this I realized that this structure could be improved, so after #1132 is merged, it will be this instead:
For a single table/frame/widget and all of its children:
For all scrollbars:
Apologies for the change.