mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-27 10:26:19 +03:00
Changed if to elif
This commit is contained in:
parent
683768095b
commit
69b733d5f1
|
@ -135,7 +135,7 @@ class FreeTypeFont(object):
|
||||||
layout_engine = LAYOUT_BASIC
|
layout_engine = LAYOUT_BASIC
|
||||||
if core.HAVE_RAQM:
|
if core.HAVE_RAQM:
|
||||||
layout_engine = LAYOUT_RAQM
|
layout_engine = LAYOUT_RAQM
|
||||||
if layout_engine == LAYOUT_RAQM and not core.HAVE_RAQM:
|
elif layout_engine == LAYOUT_RAQM and not core.HAVE_RAQM:
|
||||||
layout_engine = LAYOUT_BASIC
|
layout_engine = LAYOUT_BASIC
|
||||||
|
|
||||||
self.layout_engine = layout_engine
|
self.layout_engine = layout_engine
|
||||||
|
|
Loading…
Reference in New Issue
Block a user