From 49dd23a04a00944638712b2946adc3eaa1e45691 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C3=A9cureuil?= Date: Wed, 20 May 2015 00:52:00 +0200 Subject: process_events(): Fix use of main_iteration() mga#15985 --- src/msec/msecgui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/msec/msecgui.py b/src/msec/msecgui.py index 5e1a132..7a2ceb7 100755 --- a/src/msec/msecgui.py +++ b/src/msec/msecgui.py @@ -681,7 +681,7 @@ class MsecGui: def process_events(self): """Process pending gtk events""" while Gtk.events_pending(): - Gtk.main_iteration(False) + Gtk.main_iteration() def show_test_results(self, widget, logfile): """Shows results of last periodic check""" -- cgit v1.2.1