diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-02-07 16:15:49 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-02-07 16:15:49 +0000 |
commit | 987580b77a036114c46ffd4b5e1b53754200dfdb (patch) | |
tree | d0360627cea0e3ea7b63533cf02295d1368efeb0 | |
parent | 9a82cdd300c4d6f7f90fc796b2554a70f0db647e (diff) | |
download | drakx-backup-do-not-use-987580b77a036114c46ffd4b5e1b53754200dfdb.tar drakx-backup-do-not-use-987580b77a036114c46ffd4b5e1b53754200dfdb.tar.gz drakx-backup-do-not-use-987580b77a036114c46ffd4b5e1b53754200dfdb.tar.bz2 drakx-backup-do-not-use-987580b77a036114c46ffd4b5e1b53754200dfdb.tar.xz drakx-backup-do-not-use-987580b77a036114c46ffd4b5e1b53754200dfdb.zip |
allow to edit the hsyncrange and vsyncrange when choosing monitor "Custom"
-rw-r--r-- | perl-install/Xconfigurator.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/Xconfigurator.pm b/perl-install/Xconfigurator.pm index e0f969710..664ec7894 100644 --- a/perl-install/Xconfigurator.pm +++ b/perl-install/Xconfigurator.pm @@ -530,8 +530,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."), - [ { val => \$monitor->{hsyncrange}, list => \@hsyncranges, label => _("Horizontal refresh rate") }, - { val => \$monitor->{vsyncrange}, list => \@vsyncranges, label => _("Vertical refresh rate") }]); + [ { val => \$monitor->{hsyncrange}, list => \@hsyncranges, label => _("Horizontal refresh rate"), not_edit => 0 }, + { val => \$monitor->{vsyncrange}, list => \@vsyncranges, label => _("Vertical refresh rate"), not_edit => 0 } ]); } else { add2hash($monitor, $monitors{$monitor->{type}} || $standard_monitors_{$monitor->{type}}); } |