Skip to content

Commit

Permalink
FIX gui.load_stcs()
Browse files Browse the repository at this point in the history
  • Loading branch information
christianbrodbeck committed Mar 31, 2021
1 parent 58b815c commit 8b3a937
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eelbrain/_wxgui/load_stcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ def InitUI(self):
self.launch_stats = wx.Button(self, wx.ID_ANY, "Launch Stats GUI")
self.attach_ds.Disable()
self.launch_stats.Disable()
bottom_sizer.Add(self.attach_ds, 0, wx.ALIGN_RIGHT)
bottom_sizer.Add(self.launch_stats, 0, wx.ALIGN_RIGHT)
bottom_sizer.Add(self.attach_ds, 0)
bottom_sizer.Add(self.launch_stats, 0)
self.sizer.Add(bottom_sizer, 0, wx.ALIGN_RIGHT | wx.ALL, 10)
self.sizer.Layout()
self.SetSizer(self.sizer)
Expand Down

0 comments on commit 8b3a937

Please sign in to comment.