diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2024-05-11 08:19:23 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-11 08:19:23 +0200 |
| commit | 18deb5ee3b9244715de6ce28fbc4afdb804781f5 (patch) | |
| tree | c71a76f81263e8dfccaa99b76b78877c58aedd80 /lib/gui/tartan/code_panel.py | |
| parent | bf42ef00ca315e78c0069c01d97517e3786f2135 (diff) | |
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
Diffstat (limited to 'lib/gui/tartan/code_panel.py')
| -rw-r--r-- | lib/gui/tartan/code_panel.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |
