Skip to content

Commit

Permalink
gui(experimental): make scrollbars draggable
Browse files Browse the repository at this point in the history
  • Loading branch information
eruvanos committed Dec 22, 2024
1 parent 7d33417 commit 14a0c3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arcade/gui/experimental/scroll_area.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ class UIScrollBar(UIWidget):
Does not support mouse interaction yet.
"""

_thumb_hover: bool = Property(False)
_dragging: bool = Property(False)
_thumb_hover = Property(False)
_dragging = Property(False)

def __init__(self, scroll_area: UIScrollArea, vertical: bool = True):
size_hint = (0.05, 1) if vertical else (1, 0.05)
Expand Down

0 comments on commit 14a0c3e

Please sign in to comment.