1
私のkvファイルでscroll_to関数を使用しています。私が望むように適切にスクロールしますが、マウスホイールを回すと、scroll_to()の前に戻ってきます。scroll_to()の動作
私のコードを改善するにはどうすればよいですか?私のKV-ファイルの
snipplet:
MyButton:
text: 'jump'
on_release: scroll_content.scroll_to(jump_id_2, padding=0, animate=True)
ScrollView:
id: scroll_content
blah, blah, blah.......
# values of the devices
GridLayout:
BoxLayout:
id: jump_id_0
blah, blah, blah.......
BoxLayout:
id: jump_id_1
blah, blah, blah.......
BoxLayout:
id: jump_id_2
blah, blah, blah.......
はあなたの助けをありがとう....
バグですので、[repo](https://github.com/kivy/kivy/issues/)で問題を作りましょう。おそらく、スクロールの新しい変化に関係しているでしょう。 – KeyWeeUsr