summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install')
-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"),