From 7529efa417d1d0cc30b66e996c191848a74bbe21 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Tue, 19 May 2015 05:42:16 -0400 Subject: fix empty user list (mga#12530) just use simpler Gtk3::ComboBoxText bug introduced in commit 4a4453328a1a2051307f44e6c1c200625666ba16 when switching from gtk2 to gtk3 --- bin/draksambashare | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/draksambashare b/bin/draksambashare index d28aa39..9fb8749 100755 --- a/bin/draksambashare +++ b/bin/draksambashare @@ -898,7 +898,7 @@ sub modify_user_info { $dialog->set_position('center'); $dialog->set_resizable(0); if ($todo eq "add") { - $buser = Gtk3::ComboBox->new_with_strings([ get_user() ]); + $buser = Gtk3::ComboBoxText->new_with_strings([ get_user() ]); $buser->set_wrap_width(3); } else { $buser = Gtk3::Label->new; -- cgit v1.2.1