From 18deb5ee3b9244715de6ce28fbc4afdb804781f5 Mon Sep 17 00:00:00 2001 From: Kaalleen <36401965+kaalleen@users.noreply.github.com> Date: Sat, 11 May 2024 08:19:23 +0200 Subject: Several fixes (#2893) * fix untranslatable string in tartan code panel * warn about duplicated glyphs in font file * font sampling: change default line length * prevent element_id referenced before assignment --- lib/gui/tartan/code_panel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/gui/tartan/code_panel.py') diff --git a/lib/gui/tartan/code_panel.py b/lib/gui/tartan/code_panel.py index f9dfe475..02d8d93c 100644 --- a/lib/gui/tartan/code_panel.py +++ b/lib/gui/tartan/code_panel.py @@ -31,7 +31,7 @@ class CodePanel(wx.Panel): code_sizer.Add(tt_unit_sizer, 0, wx.ALL, 10) - load_button = wx.Button(self, label="Apply Code") + load_button = wx.Button(self, label=_("Apply Code")) load_button.Bind(wx.EVT_BUTTON, self._load_palette_code) load_palette_sizer.Add(load_button, 0, wx.ALL, 10) -- cgit v1.2.3