Skip to content

Commit

Permalink
Resolves #653 - a missing translation step for tabbed group titles.
Browse files Browse the repository at this point in the history
  • Loading branch information
neonbunny authored and chriskiehl committed Dec 20, 2020
1 parent 46e3986 commit 487a309
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gooey/gui/components/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def layoutComponent(self):
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()


Expand Down

0 comments on commit 487a309

Please sign in to comment.