diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-09 08:45:39 +0300 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-09 08:45:39 +0300 |
commit | bcb8a5eb0a7bd52c3f9db068e569cdcfcccbd206 (patch) | |
tree | e7aba44fce0a4da18dbce2a456b61ccc16629e3c /modules/shared.py | |
parent | 1fd2c22919f85e1403b7169d6ef8cc4abf4288cc (diff) |
change default font capitalization to possibly help linux users #157
Diffstat (limited to 'modules/shared.py')
-rw-r--r-- | modules/shared.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/shared.py b/modules/shared.py index a51d9ba6..89e44f3d 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -83,7 +83,7 @@ def find_any_font(): if os.path.exists(font):
return font
- return "arial.ttf"
+ return "Arial.TTF"
class Options:
|