Commit ed1e7341ceeb1f3f808e89b1e11ca4f29a226067
1 parent
dce7b5fa
Exists in
mask_boolean_op_bkp
changed "xor" to "exclusive disjuction"
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
invesalius/gui/dialogs.py
@@ -1498,7 +1498,7 @@ class MaskBooleanDialog(wx.Dialog): | @@ -1498,7 +1498,7 @@ class MaskBooleanDialog(wx.Dialog): | ||
1498 | op_choices = ((u"Union", const.BOOLEAN_UNION), | 1498 | op_choices = ((u"Union", const.BOOLEAN_UNION), |
1499 | (u"Difference", const.BOOLEAN_DIFF), | 1499 | (u"Difference", const.BOOLEAN_DIFF), |
1500 | (u"Intersection", const.BOOLEAN_AND), | 1500 | (u"Intersection", const.BOOLEAN_AND), |
1501 | - (u"XOR", const.BOOLEAN_XOR)) | 1501 | + (u"Exclusive disjunction", const.BOOLEAN_XOR)) |
1502 | self.op_boolean = wx.ComboBox(self, -1, op_choices[0][0], choices=[]) | 1502 | self.op_boolean = wx.ComboBox(self, -1, op_choices[0][0], choices=[]) |
1503 | 1503 | ||
1504 | for n, i in op_choices: | 1504 | for n, i in op_choices: |