8000 qt: raise each new window by efiring · Pull Request #5553 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

qt: raise each new window #5553

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 14, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
qt: raise each new window
  • Loading branch information
efiring committed Nov 24, 2015
commit 9a0afe33f12c7947a3daeb5981bd9bd43dd7b824
1 change: 1 addition & 0 deletions lib/matplotlib/backends/backend_qt5.py
Original file line number Diff line number Diff line change
Expand Up @@ -490,6 +490,7 @@ def notify_axes_change(fig):
if self.toolbar is not None:
self.toolbar.update()
self.canvas.figure.add_axobserver(notify_axes_change)
self.window.raise_()

@QtCore.Slot()
def _show_message(self, s):
Expand Down
0