summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFrode Austvik <edorfaus@xepher.net>2012-08-21 11:25:51 +0200
committerArx Cruz <arxcruz@gnome.org>2012-08-21 19:20:12 -0300
commitbac509bb12fafb928f9e4009e46cefc63562b4ca (patch)
tree00123cfd7ad8e7b338f9a94ab97b48e3c39fd9ee /src
parente4c5d60ee2f54bf4db3057483214e50ffd140c6c (diff)
Fix the ComboBoxText construction so the dropmenu works again.
This fixes lp#998445 by changing the code to construct a new ComboBoxText instead of a ComboBox, which it was (probably accidentally) changed to do in commit 4421de67. Closes: lp#998445
Diffstat (limited to 'src')
-rw-r--r--src/entry.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/entry.c b/src/entry.c
index 7163e54..2b92e59 100644
--- a/src/entry.c
+++ b/src/entry.c
@@ -107,7 +107,7 @@ zenity_entry (ZenityData *data, ZenityEntryData *entry_data)
n_entries = g_slist_length (entries);
if (n_entries > 1) {
- entry = gtk_combo_box_new_with_entry ();
+ entry = gtk_combo_box_text_new_with_entry ();
for (tmp = entries; tmp; tmp = tmp->next) {
gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (entry), tmp->data);