Skip to content

Commit

Permalink
GUI: Fix multi-plot spacing. Finally.
Browse files Browse the repository at this point in the history
  • Loading branch information
bpteague committed Mar 30, 2016
1 parent d80009d commit c18e9b0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions cytoflowgui/flow_task_pane.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,12 @@ def plot(self, wi):
return

wi.current_view.plot(wi.result)
plt.subplots_adjust(left = 0.1,
right = 0.975,
bottom = 0.075,
top = 0.9625,
wspace = 0.175,
hspace = 0.175)

if w:
wi.current_view.warning = w[-1].message.__str__()
Expand Down

0 comments on commit c18e9b0

Please sign in to comment.