python - Matplotlib; open plots minimized? -
so i've got code going make couple plots, want/have window maximized in size. however, i'd ideally want these windows minimized when created (mostly because make testing things lot easier!) there way achieve this? i'm using python 2.7 on linux, matplotlib version 1.3.1 using backend tkagg.
if other information needed, ask, , in advance (even if turns out it's not possible!).
try after relevant plots:
mng = plt.get_current_fig_manager() mng.window.showmaximized() mng.window.showminimized()
Comments
Post a Comment