Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
tkagg: raise each new window; partially addresses #596 #5951
Conversation
efiring
added the
needs_review
label
Jan 31, 2016
tacaswell
added this to the
2.0 (style change major release)
milestone
Jan 31, 2016
pelson
commented on the diff
Feb 1, 2016
| @@ -609,6 +609,9 @@ def destroy(*args): | ||
| self.window.update() | ||
| else: | ||
| self.canvas.draw_idle() | ||
| + # Raise the new window. | ||
| + self.canvas.manager.window.attributes('-topmost', 1) |
pelson
Member
|
|
This may be addressed by the GUI class structure overhaul which we need to review. |
|
I am |
pelson
added a commit
that referenced
this pull request
Feb 3, 2016
|
|
pelson |
600464d
|
pelson
merged commit 600464d
into matplotlib:master
Feb 3, 2016
mdboom
removed the
needs_review
label
Feb 3, 2016
QuLogic
added the
GUI/tk
label
Feb 3, 2016
efiring
deleted the
efiring:tk_raise branch
Jun 23, 2016
QuLogic
added a commit
to QuLogic/matplotlib
that referenced
this pull request
Oct 16, 2016
|
|
pelson + QuLogic |
07d17ba
|
|
Backported to v2.x via 07d17ba. |
efiring commentedJan 31, 2016
This uses the method suggested by @gsonnenf in a comment on #596.