Skip to content

Commit 0c260bc

Browse files
committed
Fix #1691
1 parent c6d0de0 commit 0c260bc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: kivymd/uix/swiper/swiper.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -113,11 +113,11 @@ def build(self):
113113
StringProperty,
114114
)
115115
from kivy.uix.anchorlayout import AnchorLayout
116+
from kivy.uix.scrollview import ScrollView
116117
from kivy.utils import platform
117118

118119
from kivymd import uix_path
119120
from kivymd.uix.boxlayout import MDBoxLayout
120-
from kivymd.uix.scrollview import MDScrollView
121121

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

200200

201-
class MDSwiper(MDScrollView):
201+
class MDSwiper(ScrollView):
202202
"""
203203
Swiper class.
204204
205205
For more information, see in the
206-
:class:`~kivymd.uix.scrollview.MDScrollView` class documentation.
206+
:class:`~kivy.uix.scrollview.ScrollView` class documentation.
207207
"""
208208

209209
items_spacing = NumericProperty("20dp")

0 commit comments

Comments
 (0)