diff options
author | Francois Pons <fpons@mandriva.com> | 2001-06-13 17:23:24 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-06-13 17:23:24 +0000 |
commit | 23c668556845566269c252f95efa533b271f215d (patch) | |
tree | d952e92cfb4ac77c6e7e0a6c512a3bdab6c517f6 | |
parent | a78b4cd9a8eccfa568414843a4bf49ff8e80b719 (diff) | |
download | drakx-backup-do-not-use-23c668556845566269c252f95efa533b271f215d.tar drakx-backup-do-not-use-23c668556845566269c252f95efa533b271f215d.tar.gz drakx-backup-do-not-use-23c668556845566269c252f95efa533b271f215d.tar.bz2 drakx-backup-do-not-use-23c668556845566269c252f95efa533b271f215d.tar.xz drakx-backup-do-not-use-23c668556845566269c252f95efa533b271f215d.zip |
fix fix for laptop resolutions.
-rw-r--r-- | perl-install/Xconfigurator.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/Xconfigurator.pm b/perl-install/Xconfigurator.pm index 926a26576..86e766f84 100644 --- a/perl-install/Xconfigurator.pm +++ b/perl-install/Xconfigurator.pm @@ -820,7 +820,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 : @resolutions_laptop) ] + $card->{depth}{$_} = [ map { [ split "x" ] } (detect_devices::isLaptop() ? @resolutions_laptop : @resolutions) ] foreach @depths; } #- sort resolutions in each depth |