Browse Source

Resolves #653 - a missing translation step for tabbed group titles.

pull/662/head
Stephen Tomkinson 3 years ago
committed by Chris
parent
commit
487a309317
1 changed files with 1 additions and 1 deletions
  1. 2
      gooey/gui/components/config.py

2
gooey/gui/components/config.py

@ -211,7 +211,7 @@ class TabbedConfigPage(ConfigPage):
self.makeGroup(panel, sizer, group, 0, wx.EXPAND)
panel.SetSizer(sizer)
panel.Layout()
self.notebook.AddPage(panel, group['name'])
self.notebook.AddPage(panel, self.getName(group))
self.notebook.Layout()

Loading…
Cancel
Save