Skip to content

Commit

Permalink
PAX: fix figure size in 48-spot plots
Browse files Browse the repository at this point in the history
  • Loading branch information
tritemio committed Aug 2, 2017
1 parent 5be3093 commit c97d4a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fretbursts/burst_plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -2018,7 +2018,7 @@ def dplot_48ch(d, func, sharex=True, sharey=True, layout='horiz',
nrows, ncols = ncols, nrows
iter_ch = ch_map.T.ravel()
if figsize is None:
figsize = (1.5 * nrows + 2, 1.5 * ncols + 1)
figsize = (1.5 * ncols + 2, 1.5 * nrows + 1)
if layout.startswith('vert'):
figsize = figsize[1], figsize[0]
return _iter_plot(d, func, kwargs, iter_ch, nrows, ncols, figsize, AX,
Expand Down

0 comments on commit c97d4a8

Please sign in to comment.