diff options
Diffstat (limited to 'perl-install/ugtk3.pm')
-rw-r--r-- | perl-install/ugtk3.pm | 5 |
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 { |