Skip to content

Commit

Permalink
AMD
Browse files Browse the repository at this point in the history
  • Loading branch information
christianbrodbeck committed May 11, 2021
1 parent a71bf47 commit 052207e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eelbrain/plot/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -2720,10 +2720,10 @@ def subplots(
gridspec_kw = {
'left': layout.margins['left'] / layout.w,
'right': 1 - layout.margins['right'] / layout.w,
'wspace': layout.margins['wspace'] / layout.w,
'wspace': layout.margins['wspace'] / layout.axw,
'bottom': layout.margins['bottom'] / layout.h,
'top': 1 - layout.margins['top'] / layout.h,
'hspace': layout.margins['hspace'] / layout.h,
'hspace': layout.margins['hspace'] / layout.axh,
}
return pyplot.subplots(layout.nrow, layout.ncol, figsize=(layout.w, layout.h), gridspec_kw=gridspec_kw, **kwargs)

Expand Down

0 comments on commit 052207e

Please sign in to comment.