Skip to content

Commit e510b1d

Browse files
committed
Adjust default figure size to reduce padding
When plotting two or more adjacent plots in annulus geometry, the padding between plots is more reasonable.
1 parent a7b4d26 commit e510b1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stagpy/field.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ def cmd():
306306
for step in sdat.walk.filter(snap=True):
307307
for vfig in lovs:
308308
fig, axes = plt.subplots(ncols=len(vfig), squeeze=False,
309-
figsize=(9 * len(vfig), 6))
309+
figsize=(6 * len(vfig), 6))
310310
for axis, var in zip(axes[0], vfig):
311311
if var[0] not in step.fields:
312312
print(f"{var[0]!r} field on snap {step.isnap} not found")

0 commit comments

Comments
 (0)