diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-01-05 17:12:51 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-01-05 17:12:51 +0000 |
commit | 937943b4502499a9afae32313f47a73352a21a41 (patch) | |
tree | 4a9570acd26db16e0acd5094970321e489ab7d2c /perl-install/Xconfigurator.pm | |
parent | 85e3ac6e225bd09cfa913a3a3812335f99cbfd3c (diff) | |
download | drakx-937943b4502499a9afae32313f47a73352a21a41.tar drakx-937943b4502499a9afae32313f47a73352a21a41.tar.gz drakx-937943b4502499a9afae32313f47a73352a21a41.tar.bz2 drakx-937943b4502499a9afae32313f47a73352a21a41.tar.xz drakx-937943b4502499a9afae32313f47a73352a21a41.zip |
move to new ask_from's:
- ask_from_entries_ref is deprecated, use ask_from_entries_refH
- ask_from_list now calls ask_from_entries_refH_powered
still not done:
- ask_from_treelist should use ask_from_entries_refH_powered,
and lists with no help should use CList (List is bad)
- keyboard and mouse binding is still rough
- enhance the look
Diffstat (limited to 'perl-install/Xconfigurator.pm')
-rw-r--r-- | perl-install/Xconfigurator.pm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/perl-install/Xconfigurator.pm b/perl-install/Xconfigurator.pm index 786bc032d..925749ead 100644 --- a/perl-install/Xconfigurator.pm +++ b/perl-install/Xconfigurator.pm @@ -362,7 +362,7 @@ sub monitorConfiguration(;$$) { add2hash($monitor, { type => $in->ask_from_treelist(_("Monitor"), _("Choose a monitor"), '|', ['Custom', keys %monitors], 'Generic|' . translate($default_monitor)) }) unless $monitor->{type}; if ($monitor->{type} eq 'Custom') { - $in->ask_from_entries_ref('', + $in->ask_from_entries_refH('', _("The two critical parameters are the vertical refresh rate, which is the rate at which the whole screen is refreshed, and most importantly the horizontal sync rate, which is the rate at which scanlines are displayed. @@ -370,9 +370,8 @@ sync rate, which is the rate at which scanlines are displayed. It is VERY IMPORTANT that you do not specify a monitor type with a sync range that is beyond the capabilities of your monitor: you may damage your monitor. If in doubt, choose a conservative setting."), - [ _("Horizontal refresh rate"), _("Vertical refresh rate") ], - [ { val => \$monitor->{hsyncrange}, list => \@hsyncranges }, - { val => \$monitor->{vsyncrange}, list => \@vsyncranges }, ]); + [ { val => \$monitor->{hsyncrange}, list => \@hsyncranges, label => _("Horizontal refresh rate") }, + { val => \$monitor->{vsyncrange}, list => \@vsyncranges, label => _("Vertical refresh rate") }]); } else { add2hash($monitor, $monitors{$monitor->{type}}); } |