Commit 7e9ac0f3f5c29482c747d57dc86f8c0ef5d46990
1 parent
827aff91
Exists in
master
and in
5 other branches
FIX: When the user selected other editor pencil, its size was setted with the de…
…fault size, not with the last size the user setted
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
invesalius/data/viewer_slice.py
... | ... | @@ -673,7 +673,7 @@ class Viewer(wx.Panel): |
673 | 673 | |
674 | 674 | def ChangeBrushSize(self, pubsub_evt): |
675 | 675 | size = pubsub_evt.data |
676 | - #self._brush_cursor_size = size | |
676 | + self._brush_cursor_size = size | |
677 | 677 | #for slice_data in self.slice_data_list: |
678 | 678 | self.slice_data.cursor.SetSize(size) |
679 | 679 | ... | ... |