Skip to content

Commit

Permalink
fix show_complex figsize popping
Browse files Browse the repository at this point in the history
  • Loading branch information
edwinsupple committed Oct 1, 2024
1 parent b557edf commit baebf74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py4DSTEM/visualize/vis_special.py
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,7 @@ def show_complex(
add_scalebar(ax[0, 0], scalebar)
else:
figsize = kwargs.pop("axsize", None)
figsize = kwargs.pop("figsize", figsize)
figsize = kwargs.pop("figsize", (5, 5))

fig, ax = show(
rgb,
Expand Down

0 comments on commit baebf74

Please sign in to comment.