From 60e052cdf2bfd4aa1ebac0cbee1338ce7b3d0d6d Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Wed, 18 Mar 2009 11:02:27 +0000 Subject: (create_widgets) fix doble clicking on 'accept' on license screen (regression introduced when adding "install" buttons (aka release notes, help...) --- perl-install/interactive/gtk.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install/interactive') diff --git a/perl-install/interactive/gtk.pm b/perl-install/interactive/gtk.pm index c4b89899f..50a7b5a4d 100644 --- a/perl-install/interactive/gtk.pm +++ b/perl-install/interactive/gtk.pm @@ -681,7 +681,7 @@ sub create_widgets { foreach (@all) { my $e = $_; #- for closures - if (@all == 1 || $e->{quit_if_double_click}) { + if ((grep { !$_->{install_button} && $_->{type} ne 'only_label' } @all) == 1 || $e->{quit_if_double_click}) { #- i'm the only one, double click means accepting $e->{quit_if_double_click_cooked} = sub { $_[1]->type =~ /^2/ && $ok_clicked->() }; } -- cgit v1.2.1