summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_interactive.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-02-13 19:38:51 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-02-13 19:38:51 +0000
commit5d6c00b5f678512bfb8e34eabff16c4338dfd34e (patch)
tree1c1841ec7cb1a8bee8822b2daa7ec284a36b98ec /perl-install/install_steps_interactive.pm
parentb5f9832e36a7c2d7dc740cb53a406175480165b9 (diff)
downloaddrakx-backup-do-not-use-5d6c00b5f678512bfb8e34eabff16c4338dfd34e.tar
drakx-backup-do-not-use-5d6c00b5f678512bfb8e34eabff16c4338dfd34e.tar.gz
drakx-backup-do-not-use-5d6c00b5f678512bfb8e34eabff16c4338dfd34e.tar.bz2
drakx-backup-do-not-use-5d6c00b5f678512bfb8e34eabff16c4338dfd34e.tar.xz
drakx-backup-do-not-use-5d6c00b5f678512bfb8e34eabff16c4338dfd34e.zip
- fix calling configureTimezone
- have country before timezone (gc wants it that way...)
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r--perl-install/install_steps_interactive.pm13
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"),