diff options
-rw-r--r-- | perl-install/install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/interactive/gtk.pm | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 332941de2..faebc3702 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- fix doble clicking on 'accept' on license screen + Version 12.15 - 17 March 2009 - fix support for iso-on-disk installation (#48661) 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->() }; } |