diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2006-10-11 18:56:43 +0200 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2006-10-11 18:56:43 +0200 |
| commit | 3b322f37caa66b7fce40061e70273eb75248ffed (patch) | |
| tree | ceee0583d542defb9764ef8a3fb7dfc3a2a8e1a6 /DistUpgrade/DistUpgradeViewGtk.py | |
| parent | 6dd632f5233fc6c6ffe04dd2d15b633f23c5e457 (diff) | |
| download | python-apt-3b322f37caa66b7fce40061e70273eb75248ffed.tar.gz | |
* debian/control:
- add python-gconf dependency / remove python-gnome2 dependency
* DistUpgrade/DistUpgradeViewGtk.py:
- run while gtk_events_pending()/gtk_main_iteration() after information()
Diffstat (limited to 'DistUpgrade/DistUpgradeViewGtk.py')
| -rw-r--r-- | DistUpgrade/DistUpgradeViewGtk.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/DistUpgrade/DistUpgradeViewGtk.py b/DistUpgrade/DistUpgradeViewGtk.py index 11b3e041..3dcfb7ed 100644 --- a/DistUpgrade/DistUpgradeViewGtk.py +++ b/DistUpgrade/DistUpgradeViewGtk.py @@ -458,6 +458,8 @@ class DistUpgradeViewGtk(DistUpgradeView,SimpleGladeApp): self.dialog_information.window.set_functions(gtk.gdk.FUNC_MOVE) self.dialog_information.run() self.dialog_information.hide() + while gtk.events_pending(): + gtk.main_iteration() def error(self, summary, msg, extended_msg=None): self.dialog_error.set_transient_for(self.window_main) |
