Skip to content

Commit

Permalink
Fixing (for some def. of fixing) table layout on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
alexras committed Nov 21, 2018
1 parent cebeb61 commit 38b866c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lsmc/TablePane.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,10 @@ def __init__(self, parent, project):

self.sizer = wx.BoxSizer(wx.HORIZONTAL)

self.sizer.Add(self.table_list, 0, wx.ALL | wx.EXPAND, border=5)
self.sizer.Add(self.table_view, 1, wx.EXPAND)
self.sizer.Add(self.table_list, 1, wx.ALL | wx.EXPAND)
self.sizer.AddSpacer(20)
self.sizer.Add(self.table_view, 2, wx.ALL | wx.EXPAND)
self.sizer.AddStretchSpacer()

self.SetSizer(self.sizer)

Expand Down

0 comments on commit 38b866c

Please sign in to comment.