diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2002-12-23 12:44:01 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2002-12-23 12:44:01 +0000 |
commit | d67ba29820f9bbc039bd9c0dcd30976771dfc75e (patch) | |
tree | bb413133d5163553ca20ef30310ba70699efff70 /perl-install/Xconfig | |
parent | 0e2238f225ae155628c4cceca267af996fea3c3a (diff) | |
download | drakx-d67ba29820f9bbc039bd9c0dcd30976771dfc75e.tar drakx-d67ba29820f9bbc039bd9c0dcd30976771dfc75e.tar.gz drakx-d67ba29820f9bbc039bd9c0dcd30976771dfc75e.tar.bz2 drakx-d67ba29820f9bbc039bd9c0dcd30976771dfc75e.tar.xz drakx-d67ba29820f9bbc039bd9c0dcd30976771dfc75e.zip |
fix titi porting gtk2 without testing enough..
Diffstat (limited to 'perl-install/Xconfig')
-rw-r--r-- | perl-install/Xconfig/resolution_and_depth.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/Xconfig/resolution_and_depth.pm b/perl-install/Xconfig/resolution_and_depth.pm index 14065b72b..444bba4e5 100644 --- a/perl-install/Xconfig/resolution_and_depth.pm +++ b/perl-install/Xconfig/resolution_and_depth.pm @@ -211,7 +211,7 @@ sub choose_gtk { my %monitor_images_x_res = do { my @l = qw(640 800 1024 1152 1280 1400 1600 1920 2048); - my %h = map { $_ => [ gtkcreate_img("monitor-$_.png") ] } @l; + my %h = map { $_ => gtkcreate_img("monitor-$_.png") } @l; #- for the other, use the biggest smaller foreach my $x_res (uniq map { $_->{X} } @resolutions) { |