Skip to content

Commit

Permalink
switch from partial to direct method call for TogaSlider
Browse files Browse the repository at this point in the history
  • Loading branch information
samschott committed Nov 29, 2024
1 parent 18ffc54 commit e4a29f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iOS/src/toga_iOS/widgets/slider.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def get_value(self):

def set_value(self, value):
self.value = value
self.native.setValue(value, animated=True)
self.native.setValue_animated_(value, True)

def get_min(self):
# Use the shadow copy, not the native value, to ensure round tripping.
Expand Down

0 comments on commit e4a29f1

Please sign in to comment.