diff options
| author | Kaalleen <reni@allenka.de> | 2023-05-10 17:12:20 +0200 |
|---|---|---|
| committer | Kaalleen <reni@allenka.de> | 2023-05-10 17:12:20 +0200 |
| commit | 3574f0e17958b83b07854b7ee857aee06f38d5a8 (patch) | |
| tree | d2c3fac4fa23318c59a6ff68213b471c3e37b0bf /lib/lettering | |
| parent | 0f78733c4b2da2dbb138452f63759f6d3272d56a (diff) | |
do it right
Diffstat (limited to 'lib/lettering')
| -rw-r--r-- | lib/lettering/font.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lettering/font.py b/lib/lettering/font.py index c4c16729..77f17e7f 100644 --- a/lib/lettering/font.py +++ b/lib/lettering/font.py @@ -185,7 +185,7 @@ class Font(object): custom_dir = get_custom_font_dir() if not custom_dir: return False - return get_custom_font_dir() in self.path + return custom_dir in self.path def render_text(self, text, destination_group, variant=None, back_and_forth=True, trim_option=0, use_trim_symbols=False): |
