This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from kivy.effects.scroll import ScrollEffect | |
| from kivy.properties import NumericProperty | |
| from kivy.effects.dampedscroll import DampedScrollEffect | |
| class LowerScrollEffect(ScrollEffect): | |
| friction = NumericProperty(0.027) | |
| def on_overscroll(self, *args): | |
| sv = self.target_widget.parent |