diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-04-08 15:02:17 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-04-08 15:02:17 +0000 |
commit | 96a6fde6002e86c376e632268970460159aeafa3 (patch) | |
tree | aa98a5dcdc02d088b0c5500516c6b32f4f233e4a /perl-install | |
parent | b5c71801a65c598b9a051aac18d2afa83f92e8fe (diff) | |
download | drakx-96a6fde6002e86c376e632268970460159aeafa3.tar drakx-96a6fde6002e86c376e632268970460159aeafa3.tar.gz drakx-96a6fde6002e86c376e632268970460159aeafa3.tar.bz2 drakx-96a6fde6002e86c376e632268970460159aeafa3.tar.xz drakx-96a6fde6002e86c376e632268970460159aeafa3.zip |
1152x864 needs more modelines than the poor 1152x864@75Hz builtin xorg (bugzilla #11698)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/Xconfig/xfree.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/Xconfig/xfree.pm b/perl-install/Xconfig/xfree.pm index eadceda3f..6d3efa117 100644 --- a/perl-install/Xconfig/xfree.pm +++ b/perl-install/Xconfig/xfree.pm @@ -350,7 +350,7 @@ sub add_gtf_ModeLines { my $res = $resolution->{X} . 'x' . $resolution->{Y}; my @to_add; if ($res ne '1280x1024' && - ($res eq '1400x1050' || $Xconfig::xfree::resolution2ratio{$res} ne '4/3')) { + ($res eq '1400x1050' || $res eq '1152x864' || $Xconfig::xfree::resolution2ratio{$res} ne '4/3')) { @to_add = map { my $s = run_program::rooted_get_stdout($::prefix, 'gtf', $resolution->{X}, $resolution->{Y}, $_); if (my ($name, $val) = $s =~ /ModeLine\s*"(.*)"(.*)/i) { |