diff options
author | damien <damien@mandriva.com> | 2001-03-09 04:38:11 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2001-03-09 04:38:11 +0000 |
commit | 21ae4a8bdbf649ebe226d3c6d07bb79c37024544 (patch) | |
tree | aa7fa356729a200da165819dfd65513f5b17bdc8 /perl-install | |
parent | e92d47c6b3df62d9915c7b36487ef57778af8348 (diff) | |
download | drakx-21ae4a8bdbf649ebe226d3c6d07bb79c37024544.tar drakx-21ae4a8bdbf649ebe226d3c6d07bb79c37024544.tar.gz drakx-21ae4a8bdbf649ebe226d3c6d07bb79c37024544.tar.bz2 drakx-21ae4a8bdbf649ebe226d3c6d07bb79c37024544.tar.xz drakx-21ae4a8bdbf649ebe226d3c6d07bb79c37024544.zip |
workaround for the graphical layout.
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/bootlook.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/bootlook.pm b/perl-install/bootlook.pm index 03e99c851..9b25fd1f6 100644 --- a/perl-install/bootlook.pm +++ b/perl-install/bootlook.pm @@ -175,7 +175,7 @@ $user_combo->set_popdown_strings(parse_etc_passwd()); my $desktop_combo = new Gtk::Combo; $user_dedans->pack_start($x_yes_button, 0, 0, 0); $user_dedans->pack_start($user_combo, 0, 0, 0); -$user_dedans->pack_start($desktop_combo, 0, 0, 0); +#$user_dedans->pack_start($desktop_combo, 0, 0, 0); $x_box->pack_start ($user_dedans, 0, 0, 0); $x_box->set_sensitive(!$x_mode); @@ -246,7 +246,7 @@ sub get_main_menu { #------------------------------------------------------------- sub isAutologin { - ${{ getVarsFromSh("/etc/sysconfig/autologin") }}{AUTOLOGIN} eq 'yes'; + ${{ common::getVarsFromSh("/etc/sysconfig/autologin") }}{AUTOLOGIN} eq 'yes'; } sub updateAutologin |