X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=info.c;h=8436a1336b9ee84ae9e57fff1d277a03349da803;hb=f826470d32c48b398a00fb6f7690877e46217927;hp=75b34bb782c85da7fbee0bd8a35e2296b857b75f;hpb=5c2fca262043992783551eceebc81c1f589b185b;p=ext%2Fsubsurface.git diff --git a/info.c b/info.c index 75b34bb..8436a13 100644 --- a/info.c +++ b/info.c @@ -98,9 +98,9 @@ void flush_dive_info_changes(struct dive *dive) static void set_combo_box_entry_text(GtkComboBoxEntry *combo_box, const char *text) { GtkEntry *entry = GTK_ENTRY(gtk_bin_get_child(GTK_BIN(combo_box))); - gtk_combo_box_set_active(GTK_COMBO_BOX(combo_box), 0); + gtk_combo_box_set_active(GTK_COMBO_BOX(combo_box), -1); if (!*text) - text = " "; + text = "\n"; gtk_entry_set_text(entry, text); }