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
A figure created on Mac with the MacOSX backend on one screen gets blank when the figure window is dragged to another screen attached to the same computer.
Code for reproduction
importmatplotlibasmplmpl.rcParams["backend"] ="MacOSX"frommatplotlibimportpyplotaspltplt.figure()
plt.plot([0,1],[0,1]) # to have some contentplt.show()
# now drag figure from one screen attached to the computer to another screen attached to the computer