Commit 0365b21ed2b9b5b1b09df6c9c1d3686d76e5c9aa

Authored by Thiago Franco de Moraes
1 parent 1c123311
Exists in master

Removed wx.ALIGN_RIGHT in task_navigator (FIX #248)

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
invesalius/gui/task_navigator.py
... ... @@ -1641,7 +1641,7 @@ class TractographyPanel(wx.Panel):
1641 1641 border_last = 1
1642 1642 line_checks = wx.BoxSizer(wx.HORIZONTAL)
1643 1643 line_checks.Add(checktracts, 0, wx.ALIGN_LEFT | wx.RIGHT | wx.LEFT, border_last)
1644   - line_checks.Add(checkpeeling, 0, wx.ALIGN_RIGHT | wx.RIGHT | wx.LEFT, border_last)
  1644 + line_checks.Add(checkpeeling, 0, wx.RIGHT | wx.LEFT, border_last)
1645 1645  
1646 1646 # Add line sizers into main sizer
1647 1647 border = 1
... ...