diff options
author | Francois Pons <fpons@mandriva.com> | 2001-09-06 13:53:07 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-09-06 13:53:07 +0000 |
commit | 2e4efefdf891ec4ba6cf043ed6fc708dcbae050e (patch) | |
tree | b8d640fbf2fd854fb649aad3a147ab707edee057 /perl-install/Xconfigurator.pm | |
parent | 3e49147ec07edabd7653362a61959f42c8c0b8ba (diff) | |
download | drakx-backup-do-not-use-2e4efefdf891ec4ba6cf043ed6fc708dcbae050e.tar drakx-backup-do-not-use-2e4efefdf891ec4ba6cf043ed6fc708dcbae050e.tar.gz drakx-backup-do-not-use-2e4efefdf891ec4ba6cf043ed6fc708dcbae050e.tar.bz2 drakx-backup-do-not-use-2e4efefdf891ec4ba6cf043ed6fc708dcbae050e.tar.xz drakx-backup-do-not-use-2e4efefdf891ec4ba6cf043ed6fc708dcbae050e.zip |
avoid using @resolutions_laptop, now use only @resolutions, this means 1400x1050
is available to other, use XFree86 4.1.0 builtin timings for 1400x1050 (so
1400x1050 is no more printed as modeline for XFree 4.1.0 configuration file).
Diffstat (limited to 'perl-install/Xconfigurator.pm')
-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 23d296b40..5566212a5 100644 --- a/perl-install/Xconfigurator.pm +++ b/perl-install/Xconfigurator.pm @@ -2,7 +2,7 @@ package Xconfigurator; # $Id$ use diagnostics; use strict; -use vars qw($in $do_pkgs @window_managers @depths @monitorSize2resolution @hsyncranges %min_hsync4wres @vsyncranges %depths @resolutions @resolutions_laptop %serversdriver @svgaservers @accelservers @allbutfbservers @allservers %vgamodes %videomemory @ramdac_name @ramdac_id @clockchip_name @clockchip_id %keymap_translate %standard_monitors $XF86firstchunk_text $keyboardsection_start $keyboardsection_start_v4 $keyboardsection_part2 $keyboardsection_part3 $keyboardsection_part3_v4 $keyboardsection_end $pointersection_text $monitorsection_text1 $monitorsection_text2 $monitorsection_text3 $monitorsection_text4 $modelines_text_Trident_TG_96xx $modelines_text_ext $modelines_text $devicesection_text $devicesection_text_v4 $screensection_text1 %lines @options %xkb_options $good_default_monitor $low_default_monitor $layoutsection_v4 $modelines_text_apple); +use vars qw($in $do_pkgs @window_managers @depths @monitorSize2resolution @hsyncranges %min_hsync4wres @vsyncranges %depths @resolutions %serversdriver @svgaservers @accelservers @allbutfbservers @allservers %vgamodes %videomemory @ramdac_name @ramdac_id @clockchip_name @clockchip_id %keymap_translate %standard_monitors $XF86firstchunk_text $keyboardsection_start $keyboardsection_start_v4 $keyboardsection_part2 $keyboardsection_part3 $keyboardsection_part3_v4 $keyboardsection_end $pointersection_text $monitorsection_text1 $monitorsection_text2 $monitorsection_text3 $monitorsection_text4 $modelines_text_Trident_TG_96xx $modelines_text_ext $modelines_text $devicesection_text $devicesection_text_v4 $screensection_text1 %lines @options %xkb_options $good_default_monitor $low_default_monitor $layoutsection_v4 $modelines_text_apple); use common; use log; @@ -838,7 +838,7 @@ sub resolutionsConfiguration { return 1; #- aka we cannot test, assumed as good (should be). } if (is_empty_hash_ref($card->{depth})) { - $card->{depth}{$_} = [ map { [ split "x" ] } (detect_devices::isLaptop() ? @resolutions_laptop : @resolutions) ] + $card->{depth}{$_} = [ map { [ split "x" ] } @resolutions ] foreach @depths; } #- sort resolutions in each depth |