summaryrefslogtreecommitdiff
path: root/lib/gui/edit_json/settings_panel.py
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2025-02-05 18:50:31 +0100
committerGitHub <noreply@github.com>2025-02-05 18:50:31 +0100
commitaf6cdc442bbcc1323ac1d13adaa49982318c9cfe (patch)
treef71d2de5c2a89167cdb4dc9975b5f6e6d97f978e /lib/gui/edit_json/settings_panel.py
parent8f1f68a1db65b150a6429f334059bcae34a9b883 (diff)
Lettering typographic features (#3466)
* add svg font to layers extension which saves glyph annotations into the glyph name --------- Co-authored-by: Claudine
Diffstat (limited to 'lib/gui/edit_json/settings_panel.py')
-rw-r--r--lib/gui/edit_json/settings_panel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gui/edit_json/settings_panel.py b/lib/gui/edit_json/settings_panel.py
index 57ba5fdc..8c51a3d0 100644
--- a/lib/gui/edit_json/settings_panel.py
+++ b/lib/gui/edit_json/settings_panel.py
@@ -97,7 +97,7 @@ class FontInfo(wx.Panel):
)
default_variant_label = wx.StaticText(self, label=_("Default Variant"))
- self.default_variant = wx.Choice(self, choices=[_("→"), _("←"), _("↓"), ("↑")])
+ self.default_variant = wx.Choice(self, choices=["→", "←", "↓", "↑"])
self.default_variant.Bind(wx.EVT_CHOICE, self.parent.on_default_variant_change)
text_direction_label = wx.StaticText(self, label=_("Text direction"))