diff options
Diffstat (limited to 'menus_launcher.pl')
-rwxr-xr-x | menus_launcher.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/menus_launcher.pl b/menus_launcher.pl index b46047f3..83bac48f 100755 --- a/menus_launcher.pl +++ b/menus_launcher.pl @@ -30,7 +30,7 @@ my $b1 = gtksignal_connect(Gtk2::Button->new(N("Configure...")), clicked => sub $table->attach($b1, 1, 2, 0, 1, 'fill', 'fill', 0, 0); $table->attach(Gtk2::Label->new(N("User menu")), 0, 1, 1, 2, 'fill', 'fill', 0, 0); -my $combo = Gtk2::Combo->new; +my $combo = Gtk2::OptionMenu->new; $combo->set_popdown_strings("root", sort(list_users())); $table->attach($combo, 2, 3, 1, 2, 'fill', 'fill', 0, 0); my $b2 = gtksignal_connect(Gtk2::Button->new(N("Configure...")), |