Commit f1f2323231da8f928a866a11510c58035e08124d
1 parent
ddef6e52
Exists in
master
and in
35 other branches
Added a title to the watershed config dialog
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
invesalius/gui/dialogs.py
| ... | ... | @@ -1449,7 +1449,7 @@ class WatershedOptionsPanel(wx.Panel): |
| 1449 | 1449 | class WatershedOptionsDialog(wx.Dialog): |
| 1450 | 1450 | def __init__(self, config): |
| 1451 | 1451 | pre = wx.PreDialog() |
| 1452 | - pre.Create(wx.GetApp().GetTopWindow(), -1, style=wx.DEFAULT_DIALOG_STYLE|wx.FRAME_FLOAT_ON_PARENT) | |
| 1452 | + pre.Create(wx.GetApp().GetTopWindow(), -1, _(u'Watershed'), style=wx.DEFAULT_DIALOG_STYLE|wx.FRAME_FLOAT_ON_PARENT) | |
| 1453 | 1453 | self.PostCreate(pre) |
| 1454 | 1454 | |
| 1455 | 1455 | self.config = config | ... | ... |