Commit c13a5e1dc0434a9baee480881b560f6147b2b83c

Authored by tatiana
1 parent cb04cd6c

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,8 +1101,8 @@ class MeasuresListCtrlPanel(wx.ListCtrl, listmix.TextEditMixin):
1101 index = pubsub_evt.data[0] 1101 index = pubsub_evt.data[0]
1102 name = pubsub_evt.data[1] 1102 name = pubsub_evt.data[1]
1103 colour = pubsub_evt.data[2] 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 value = pubsub_evt.data[5] 1106 value = pubsub_evt.data[5]
1107 1107
1108 if index not in self._list_index: 1108 if index not in self._list_index: