diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2025-06-01 07:03:43 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-01 07:03:43 +0200 |
| commit | c7f4814519d7b741f6134d9c551fbf2e9ae488f0 (patch) | |
| tree | be827257bd1fcb77ccdfcfd65133287d23b3ca42 /lib/gui/lettering/main_panel.py | |
| parent | b7443483def03878e4b2eba952dae42546aee1ae (diff) | |
Lettering: do not warn about fonts without jsons (#3766)
Diffstat (limited to 'lib/gui/lettering/main_panel.py')
| -rw-r--r-- | lib/gui/lettering/main_panel.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gui/lettering/main_panel.py b/lib/gui/lettering/main_panel.py index b0d6f594..64312b5a 100644 --- a/lib/gui/lettering/main_panel.py +++ b/lib/gui/lettering/main_panel.py @@ -115,7 +115,7 @@ class LetteringPanel(wx.Panel): @property @cache def font_list(self): - return get_font_list() + return get_font_list(False) def update_font_list(self): self.fonts = {} |
