Commit cf08c21385fa3551bf2a69ac600d769c59bcf478
1 parent
f53fde7c
Exists in
master
and in
54 other branches
FIX: Fixed problem with unicode in slice pop-up menu
Showing
1 changed file
with
0 additions
and
1 deletions
Show diff stats
invesalius/gui/widgets/slice_menu.py
... | ... | @@ -209,7 +209,6 @@ class SliceMenu(wx.Menu): |
209 | 209 | id = evt.GetId() |
210 | 210 | item = self.ID_TO_TOOL_ITEM[evt.GetId()] |
211 | 211 | key = item.GetLabel() |
212 | - print 'Key', key | |
213 | 212 | if(key in const.WINDOW_LEVEL.keys()): |
214 | 213 | window, level = const.WINDOW_LEVEL[key] |
215 | 214 | Publisher.sendMessage('Bright and contrast adjustment image', | ... | ... |