Commit 6d2c28233499d2bd3abcb3934adf550ebbd71652
1 parent
80f05a72
Exists in
master
and in
6 other branches
FIX: Plan to cut the volume does not work if you are using version pt_BR or es. #FIX:109
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
invesalius/data/volume.py
... | ... | @@ -528,7 +528,7 @@ class Volume(): |
528 | 528 | def OnEnableTool(self, pubsub_evt): |
529 | 529 | print "OnEnableTool" |
530 | 530 | tool_name, enable = pubsub_evt.data |
531 | - if tool_name == "Cut plane": | |
531 | + if tool_name == _("Cut plane"): | |
532 | 532 | if self.plane: |
533 | 533 | if enable: |
534 | 534 | print "Enable" | ... | ... |