diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-02-13 19:38:51 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-02-13 19:38:51 +0000 |
commit | 5d6c00b5f678512bfb8e34eabff16c4338dfd34e (patch) | |
tree | 1c1841ec7cb1a8bee8822b2daa7ec284a36b98ec | |
parent | b5f9832e36a7c2d7dc740cb53a406175480165b9 (diff) | |
download | drakx-5d6c00b5f678512bfb8e34eabff16c4338dfd34e.tar drakx-5d6c00b5f678512bfb8e34eabff16c4338dfd34e.tar.gz drakx-5d6c00b5f678512bfb8e34eabff16c4338dfd34e.tar.bz2 drakx-5d6c00b5f678512bfb8e34eabff16c4338dfd34e.tar.xz drakx-5d6c00b5f678512bfb8e34eabff16c4338dfd34e.zip |
- fix calling configureTimezone
- have country before timezone (gc wants it that way...)
-rw-r--r-- | perl-install/install_steps_interactive.pm | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 9f3ba1674..b2e6e8902 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -857,13 +857,7 @@ sub summary { clicked => sub { $o->selectMouse(1); mouse::write($o, $o->{mouse}) }, }; - my $timezone_manually_set; - push @l, { - label => N("Timezone"), - val => sub { $o->{timezone}{timezone} }, - clicked => sub { $timezone_manually_set ||= $o->configureTimezone(1) }, - }; - + my $timezone_manually_set; push @l, { label => N("Country"), val => sub { lang::c2name($o->{locale}{country}) }, @@ -876,6 +870,11 @@ sub summary { } }, }; + push @l, { + label => N("Timezone"), + val => sub { $o->{timezone}{timezone} }, + clicked => sub { $timezone_manually_set = $o->configureTimezone(1) || $timezone_manually_set }, + }; push @l, { label => N("Printer"), |