diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-07-06 07:37:33 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-07-06 07:37:33 +0000 |
commit | adcfb707663292922d1d5f46069ac31996b9aef8 (patch) | |
tree | 85e4a975f37e0f8e38eb2406120eb2ed2ad4b4b6 | |
parent | c99b7ab4eb248a39fc13a8fa2da121943d143018 (diff) | |
download | drakx-adcfb707663292922d1d5f46069ac31996b9aef8.tar drakx-adcfb707663292922d1d5f46069ac31996b9aef8.tar.gz drakx-adcfb707663292922d1d5f46069ac31996b9aef8.tar.bz2 drakx-adcfb707663292922d1d5f46069ac31996b9aef8.tar.xz drakx-adcfb707663292922d1d5f46069ac31996b9aef8.zip |
(choose_gtk): ensure default height is the chosen one
-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 b9ed165c5..51017a58d 100644 --- a/perl-install/Xconfig/resolution_and_depth.pm +++ b/perl-install/Xconfig/resolution_and_depth.pm @@ -302,7 +302,7 @@ sub choose_gtk { $set_chosen_Depth->(max(@{$x_res2depth{$chosen_x_res}})); } }); - $set_chosen_x_res->($chosen_x_res); + $set_chosen_x_res->($chosen_x_res, $chosen_y_res); $set_chosen_Depth->($chosen_Depth); $W->{ok}->grab_focus; |