Commit 0229af60f2aa94dcd8d90b345f837984f9c1e8d6

Authored by Thiago Franco de Moraes
1 parent cbf7bc24
Exists in master

Marked lanczos interpolation as experimental

Showing 1 changed file with 4 additions and 4 deletions   Show diff stats
invesalius/gui/dialogs.py
... ... @@ -1881,10 +1881,10 @@ class ReorientImageDialog(wx.Dialog):
1881 1881 self._bind_events_wx()
1882 1882  
1883 1883 def _init_gui(self):
1884   - interp_methods_choices = ((_("Nearest Neighbour"), 0),
1885   - (_("Trilinear"), 1),
1886   - (_("Tricubic"), 2),
1887   - (_("Lanczos"), 3))
  1884 + interp_methods_choices = ((_(u"Nearest Neighbour"), 0),
  1885 + (_(u"Trilinear"), 1),
  1886 + (_(u"Tricubic"), 2),
  1887 + (_(u"Lanczos (experimental)"), 3))
1888 1888 self.interp_method = wx.ComboBox(self, -1, choices=[], style=wx.CB_READONLY)
1889 1889 for txt, im_code in interp_methods_choices:
1890 1890 self.interp_method.Append(txt, im_code)
... ...