Last active
February 11, 2016 00:27
-
-
Save ZGainsforth/665fc2b44d859dc64939 to your computer and use it in GitHub Desktop.
Plot matplotlib figures to the foreground.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Call this just before plt.show() | |
| def raise_window(figname=None): | |
| if figname: plt.figure(figname) | |
| cfm = plt.get_current_fig_manager() | |
| cfm.window.activateWindow() | |
| cfm.window.raise_() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment