From c97d4a8282e20d20a78a12e511176366acc29112 Mon Sep 17 00:00:00 2001 From: Antonino Ingargiola Date: Wed, 2 Aug 2017 14:45:07 -0700 Subject: [PATCH] PAX: fix figure size in 48-spot plots --- fretbursts/burst_plot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fretbursts/burst_plot.py b/fretbursts/burst_plot.py index a47bf4f8..acd4bd45 100644 --- a/fretbursts/burst_plot.py +++ b/fretbursts/burst_plot.py @@ -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,