Commit f9bfc4755381e6ee2fdca9ae90f227e6e99f10e2
Committed by
GitHub
Exists in
master
Merge pull request #435 from rmatsuda/fix-initialization-of-current_coord
FIX: initialization of current_coord
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
invesalius/gui/task_navigator.py
... | ... | @@ -1278,7 +1278,7 @@ class MarkersPanel(wx.Panel): |
1278 | 1278 | |
1279 | 1279 | self.session = ses.Session() |
1280 | 1280 | |
1281 | - self.current_coord = 0, 0, 0, None, None, None | |
1281 | + self.current_coord = [0, 0, 0, None, None, None] | |
1282 | 1282 | self.current_seed = 0, 0, 0 |
1283 | 1283 | self.current_robot_target_matrix = [None] * 9 |
1284 | 1284 | self.markers = [] | ... | ... |