8000 Tick maximum by mdboom · Pull Request #5723 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Tick maximum #5723

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

Closed
wants to merge 12 commits into from
Closed
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Merge pull request #5553 from efiring/qtontop
qt: raise each new window
  • Loading branch information
mdboom authored and tacaswell committed Dec 19, 2015
commit dee9757e711a4325174b7e1d4576ce15a5655172
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