Launcher: make scrollbar more prominent (#2955)

This commit is contained in:
Silvris 2024-03-15 07:47:31 -05:00 committed by GitHub
parent 52e65e208e
commit 31249ec6e2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -132,6 +132,8 @@ class ScrollBox(ScrollView):
self.layout.bind(minimum_height=self.layout.setter("height")) self.layout.bind(minimum_height=self.layout.setter("height"))
self.add_widget(self.layout) self.add_widget(self.layout)
self.effect_cls = ScrollEffect self.effect_cls = ScrollEffect
self.bar_width = dp(12)
self.scroll_type = ["content", "bars"]
class HovererableLabel(HoverBehavior, Label): class HovererableLabel(HoverBehavior, Label):