Commit 70587e76bc8608774869a2e7ef7c77debc2e5372
1 parent
d544e891
Exists in
master
and in
6 other branches
ENH: Replaced rotation and translation icon
Showing
1 changed file
with
4 additions
and
4 deletions
Show diff stats
invesalius/gui/frame.py
... | ... | @@ -839,11 +839,11 @@ class ObjectToolBar(wx.ToolBar): |
839 | 839 | #BMP_ANNOTATE = wx.Bitmap(path, wx.BITMAP_TYPE_PNG) |
840 | 840 | |
841 | 841 | else: |
842 | - path = os.path.join(d, "tool_rotate.gif") | |
843 | - BMP_ROTATE = wx.Bitmap(path, wx.BITMAP_TYPE_GIF) | |
842 | + path = os.path.join(d, "tool_rotate.png") | |
843 | + BMP_ROTATE = wx.Bitmap(path, wx.BITMAP_TYPE_PNG) | |
844 | 844 | |
845 | - path = os.path.join(d, "tool_translate.gif") | |
846 | - BMP_MOVE =wx.Bitmap(path, wx.BITMAP_TYPE_GIF) | |
845 | + path = os.path.join(d, "tool_translate.png") | |
846 | + BMP_MOVE =wx.Bitmap(path, wx.BITMAP_TYPE_PNG) | |
847 | 847 | |
848 | 848 | path = os.path.join(d, "tool_zoom.png") |
849 | 849 | BMP_ZOOM = wx.Bitmap(path, wx.BITMAP_TYPE_PNG) | ... | ... |