Skip to content

Commit

Permalink
Fix #1691
Browse files Browse the repository at this point in the history
  • Loading branch information
T-Dynamos committed May 29, 2024
1 parent c6d0de0 commit 0c260bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions kivymd/uix/swiper/swiper.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,11 @@ def build(self):
StringProperty,
)
from kivy.uix.anchorlayout import AnchorLayout
from kivy.uix.scrollview import ScrollView
from kivy.utils import platform

from kivymd import uix_path
from kivymd.uix.boxlayout import MDBoxLayout
from kivymd.uix.scrollview import MDScrollView

with open(
os.path.join(uix_path, "swiper", "swiper.kv"), encoding="utf-8"
Expand Down Expand Up @@ -198,12 +198,12 @@ def _dismiss_size(self):
anim.start(self)


class MDSwiper(MDScrollView):
class MDSwiper(ScrollView):
"""
Swiper class.
For more information, see in the
:class:`~kivymd.uix.scrollview.MDScrollView` class documentation.
:class:`~kivy.uix.scrollview.ScrollView` class documentation.
"""

items_spacing = NumericProperty("20dp")
Expand Down

0 comments on commit 0c260bc

Please sign in to comment.