From b535923aff925988dc07a25e96073f5b589d7650 Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Fri, 14 Mar 2008 15:31:14 +0000 Subject: do not make clicked have a default action --- perl-install/ugtk2.pm | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm index c643d089a..31e54b6f6 100644 --- a/perl-install/ugtk2.pm +++ b/perl-install/ugtk2.pm @@ -1583,13 +1583,9 @@ sub show { $self->{bubble}->signal_connect(clicked => sub { $self->{bubble}->hide; my $info = $self->{queue}[0]; - if ($info->{clicked}) { - #- has to call process_next when done - $info->{clicked}->(); - } else { - $self->process_next; - } - }); + #- has to call process_next when done + $info->{clicked}->(); + }) if $self->{queue}[0]{clicked}; $self->{bubble}->signal_connect(closed => sub { my $info = $self->{queue}[0]; $info->{timeout}->() if $info->{timeout}; -- cgit v1.2.1