diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2003-01-27 11:57:08 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2003-01-27 11:57:08 +0000 |
commit | 6676e719437984d540255b870a9b171b4edbd3fc (patch) | |
tree | 0be0d12ac9890623e6656266b3e1e8026af03103 /rpmdrake.pm | |
parent | e1d10cbc1b4d1dab130c24664615774eca13add9 (diff) | |
download | rpmdrake-6676e719437984d540255b870a9b171b4edbd3fc.tar rpmdrake-6676e719437984d540255b870a9b171b4edbd3fc.tar.gz rpmdrake-6676e719437984d540255b870a9b171b4edbd3fc.tar.bz2 rpmdrake-6676e719437984d540255b870a9b171b4edbd3fc.tar.xz rpmdrake-6676e719437984d540255b870a9b171b4edbd3fc.zip |
fix wait messages
Diffstat (limited to 'rpmdrake.pm')
-rw-r--r-- | rpmdrake.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpmdrake.pm b/rpmdrake.pm index e89a9c4c..e05d6ba2 100644 --- a/rpmdrake.pm +++ b/rpmdrake.pm @@ -154,7 +154,7 @@ sub wait_msg { my $mainw = ugtk2->new('rpmdrake', grab => 1, if_(exists $options{transient}, transient => $options{transient})); my $label = Gtk2::Label->new($msg); gtkadd($mainw->{window}, gtkpack(gtkadd(create_vbox(), $label))); - $label->signal_connect(expose_event => sub { $mainw->{displayed} = 1 }); + $label->signal_connect(expose_event => sub { $mainw->{displayed} = 1; 0 }); $mainw->sync until $mainw->{displayed}; gtkset_mousecursor_wait($mainw->{rwindow}->window); $mainw->flush; |