Skip to content

Commit 966d1dc

Browse files
committed
Fixes wrong system font directory path on iOS
1 parent e74dfb7 commit 966d1dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kivy/core/text/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ def get_system_fonts_dir():
268268
elif platform == 'win':
269269
fdirs = [os.environ['SYSTEMROOT'] + os.sep + 'Fonts']
270270
elif platform == 'ios':
271-
fdirs = ['/Systiem/Library/Fonts']
271+
fdirs = ['/System/Library/Fonts']
272272
elif platform == 'android':
273273
fdirs = ['/system/fonts']
274274

0 commit comments

Comments
 (0)