summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/ugtk3.pm5
1 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/ugtk3.pm b/perl-install/ugtk3.pm
index b6992bdcf..ce2411820 100644
--- a/perl-install/ugtk3.pm
+++ b/perl-install/ugtk3.pm
@@ -1424,7 +1424,10 @@ sub process_next {
sub add {
my ($self, $info) = @_;
push @{$self->{queue}}, $info;
- @{$self->{queue}} == 1 and $self->show;
+ # We don't always receive the 'closed' signal (especially when not clicked)
+ # and in those case we'll never show the next notifications:
+ #@{$self->{queue}} == 1 and
+ $self->show;
}
sub show {