8000 Gtk.main_iteration takes no arguments by majidaldo · Pull Request #4093 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Gtk.main_iteration takes no arguments #4093

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
Feb 19, 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
Gtk.main_iteration takes no arguments
the older sig is gtk.main_iteration(block=True) anyways. http://lazka.github.io/pgi-docs/#Gtk-3.0/functions.html#Gtk.main_iteration
  • Loading branch information
majidaldo committed Feb 10, 2015
commit 009773d1fea20b5a7da2cb6662e078f1a350ad12
2 changes: 1 addition & 1 deletion lib/matplotlib/backends/backend_gtk3.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ def new_timer(self, *args, **kwargs):
def flush_events(self):
Gdk.threads_enter()
while Gtk.events_pending():
Gtk.main_iteration(True)
Gtk.main_iteration()
Gdk.flush()
Gdk.threads_leave()

Expand Down
0