You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Run this from a computer with a hidpi display.frompylabimport*; importpicklefig=figure(figsize=(5, 4))
show(block=False)
copy=pickle.loads(pickle.dumps(fig))
show(block=False)
print(fig.get_size_inches(), c.get_size_inches())
Actual outcome
[5. 4.] [10. 8.]
... and the second figure is indeed twice bigger.
Expected outcome
[5. 4.] [5. 4.]
... and two figures with the same size.