Skip to content

Commit

Permalink
Increase graph size and add some padding
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkFenX committed May 20, 2019
1 parent f808b73 commit 359c60b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/graphFrame.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def __init__(self, parent, style=wx.DEFAULT_FRAME_STYLE | wx.NO_FULL_REPAINT_ON_
self.graphSelection = wx.Choice(self, wx.ID_ANY, style=0)
self.mainSizer.Add(self.graphSelection, 0, wx.EXPAND)

self.figure = Figure(figsize=(4, 3))
self.figure = Figure(figsize=(5, 4), tight_layout={'pad': 1.08})

rgbtuple = wx.SystemSettings.GetColour(wx.SYS_COLOUR_BTNFACE).Get()
clr = [c / 255. for c in rgbtuple]
Expand Down

0 comments on commit 359c60b

Please sign in to comment.