diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/any.pm | 5 | ||||
-rw-r--r-- | perl-install/install/NEWS | 1 |
2 files changed, 4 insertions, 2 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index c4a72d648..f51f98cbf 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -925,8 +925,9 @@ sub acceptLicense { }, [ - { label => N("Do you accept this license ?"), title => 1 }, - { list => [ N_("Accept"), N_("Refuse") ], val => \$r, type => 'list', format => sub { translate($_[0]) } }, + { label => N("Do you accept this license ?"), title => 1, alignment => 'right' }, + { list => [ N_("Accept"), N_("Refuse") ], val => \$r, type => 'list', alignment => 'right', + format => sub { translate($_[0]) } }, if_($o->{release_notes}, { clicked => sub { display_release_notes($o) }, do_not_expand => 1, val => \ (my $_t1 = N("Release Notes")), install_button => 1, no_indent => 1 } diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 2077c5d70..6b663b2d2 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,4 @@ +- improved license step - install lilo when needed (#39878) - render some message titles as blue |