Commit c13a5e1dc0434a9baee480881b560f6147b2b83c
1 parent
cb04cd6c
Exists in
master
and in
6 other branches
FIX: Location and type values on measures notebook
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
invesalius/gui/data_notebook.py
... | ... | @@ -1101,8 +1101,8 @@ class MeasuresListCtrlPanel(wx.ListCtrl, listmix.TextEditMixin): |
1101 | 1101 | index = pubsub_evt.data[0] |
1102 | 1102 | name = pubsub_evt.data[1] |
1103 | 1103 | colour = pubsub_evt.data[2] |
1104 | - location = pubsub_evt.data[3] | |
1105 | - type_ = pubsub_evt.data[4] | |
1104 | + location = pubsub_evt.data[4] | |
1105 | + type_ = pubsub_evt.data[3] | |
1106 | 1106 | value = pubsub_evt.data[5] |
1107 | 1107 | |
1108 | 1108 | if index not in self._list_index: | ... | ... |