diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-08-08 23:43:03 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-08-08 23:43:03 +0000 |
commit | 0162f9c323dbcb1d78f0092eacccf9464d53bfa8 (patch) | |
tree | 26e9eed46b2326d3e087481b60b913b4cc1e235d /perl-install/standalone | |
parent | a05d8aa9775719954f0c2eab69317ae2af55acf4 (diff) | |
download | drakx-backup-do-not-use-0162f9c323dbcb1d78f0092eacccf9464d53bfa8.tar drakx-backup-do-not-use-0162f9c323dbcb1d78f0092eacccf9464d53bfa8.tar.gz drakx-backup-do-not-use-0162f9c323dbcb1d78f0092eacccf9464d53bfa8.tar.bz2 drakx-backup-do-not-use-0162f9c323dbcb1d78f0092eacccf9464d53bfa8.tar.xz drakx-backup-do-not-use-0162f9c323dbcb1d78f0092eacccf9464d53bfa8.zip |
sort user list
Diffstat (limited to 'perl-install/standalone')
-rwxr-xr-x | perl-install/standalone/drakboot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakboot b/perl-install/standalone/drakboot index d6b72bdde..2ceef2148 100755 --- a/perl-install/standalone/drakboot +++ b/perl-install/standalone/drakboot @@ -79,7 +79,7 @@ unless ($::isEmbedded) { } my $user_combo = Gtk2::ComboBox->new_text; -$user_combo->set_popdown_strings(list_users()); +$user_combo->set_popdown_strings(sort(list_users())); $user_combo->entry->set_text($auto_mode->{autologin}) if $auto_mode->{autologin}; my $desktop_combo = Gtk2::ComboBox->new_text; $desktop_combo->set_popdown_strings(split(' ', `/usr/sbin/chksession -l`)); |