diff --git a/invesalius/data/styles.py b/invesalius/data/styles.py index 5a36b27..6c9bbe9 100644 --- a/invesalius/data/styles.py +++ b/invesalius/data/styles.py @@ -1991,7 +1991,7 @@ class FloodFillSegmentInteractorStyle(DefaultInteractorStyle): self.config = FFillSegmentationConfig() self.dlg_ffill = None - self._progr_title = _(u"Floodfill segmentation") + self._progr_title = _(u"Region growing") self._progr_msg = _(u"Segmenting ...") self.AddObserver("LeftButtonPressEvent", self.OnFFClick) diff --git a/invesalius/gui/dialogs.py b/invesalius/gui/dialogs.py index eabb42d..7bf496c 100644 --- a/invesalius/gui/dialogs.py +++ b/invesalius/gui/dialogs.py @@ -2035,7 +2035,7 @@ class SelectPartsOptionsDialog(wx.Dialog): class FFillSegmentationOptionsDialog(wx.Dialog): def __init__(self, config): pre = wx.PreDialog() - pre.Create(wx.GetApp().GetTopWindow(), -1, _(u"Floodfill Segmentation"), style=wx.DEFAULT_DIALOG_STYLE|wx.FRAME_FLOAT_ON_PARENT) + pre.Create(wx.GetApp().GetTopWindow(), -1, _(u"Region growing"), style=wx.DEFAULT_DIALOG_STYLE|wx.FRAME_FLOAT_ON_PARENT) self.PostCreate(pre) self.config = config diff --git a/invesalius/gui/frame.py b/invesalius/gui/frame.py index 1232037..286b7b9 100644 --- a/invesalius/gui/frame.py +++ b/invesalius/gui/frame.py @@ -765,7 +765,7 @@ class MenuBar(wx.MenuBar): # Segmentation Menu segmentation_menu = wx.Menu() - self.ffill_segmentation = segmentation_menu.Append(const.ID_FLOODFILL_SEGMENTATION, _(u"Floodfill")) + self.ffill_segmentation = segmentation_menu.Append(const.ID_FLOODFILL_SEGMENTATION, _(u"Region growing")) self.ffill_segmentation.Enable(False) tools_menu.AppendMenu(-1, _("Segmentation"), segmentation_menu) -- libgit2 0.21.2