diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-08-05 13:10:11 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-08-05 13:10:11 +0000 |
commit | 95e6f63006eee2d13296811cd6de29135c8f9951 (patch) | |
tree | b01aa2c8ec492434df7883f04cd9bad80bd5d7fe /perl-install | |
parent | 7dbf8c1ad4642b6c8f3b1b35117ceb1259e9d7bd (diff) | |
download | drakx-95e6f63006eee2d13296811cd6de29135c8f9951.tar drakx-95e6f63006eee2d13296811cd6de29135c8f9951.tar.gz drakx-95e6f63006eee2d13296811cd6de29135c8f9951.tar.bz2 drakx-95e6f63006eee2d13296811cd6de29135c8f9951.tar.xz drakx-95e6f63006eee2d13296811cd6de29135c8f9951.zip |
still have HorizSync and VertRefresh for Plug'n Play monitors
(XFree4 still need some help)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/Xconfig/xfree4.pm | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/perl-install/Xconfig/xfree4.pm b/perl-install/Xconfig/xfree4.pm index c65245b75..58c6cdad0 100644 --- a/perl-install/Xconfig/xfree4.pm +++ b/perl-install/Xconfig/xfree4.pm @@ -81,18 +81,6 @@ sub set_wacoms { } @wacoms; } -sub set_monitors { - my ($raw_X, @monitors) = @_; - - @monitors = map { - my %monitor = %$_; - delete @monitor{'HorizSync', 'VertRefresh'} if $monitor{VendorName} eq "Plug'n Play"; - \%monitor; - } @monitors; - - $raw_X->SUPER::set_monitors(@monitors); -} - sub depths { 8, 15, 16, 24 } sub set_resolution { my ($raw_X, $resolution, $Screen) = @_; |