Similar Posts

Subscribe
Notify of
1 Answer
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
JulianOnFire
1 year ago

The problem that the input field is not clickable is that the slider has a larger area than the input field. If you touch the slider, the touch is also transferred to the input field, so that the input field is no longer clickable. That can’t work

You need to position the slider in such a way that it does not overlap the input field. You can also set the size_hint property of the slider so that it is smaller than the input field.

Or you can use the on_touch_down method of the slider. This method is called when the slider is touched. In this method, you can check whether the slider has been touched and then transfer the touch to the input field.

so.

class Slider(Widget):

def __init__(self, **kwargs):

super(Slider, self)._init__(**kwargs)

self.bind(on_touch_down=self.on_touch_down)

def on_touch_down(self, touch):

if touch.is_mouse_scrolling:

return

if self.collide_point(touch.pos):

return

touch.pos = self.input_field.to_local(touch.pos)

self.input_field.dispatch(“on_touch_down”, touch)