gtk-demo: Use a default action in the infobars demo

This makes the question infobar activatable by clicking
anywhere in it.
This commit is contained in:
Matthias Clasen 2020-01-09 19:01:59 -05:00
parent 2b7de841a9
commit 794ee0b8c0

View File

@ -97,6 +97,7 @@ do_infobar (GtkWidget *do_widget)
gtk_label_set_wrap (GTK_LABEL (label), TRUE);
gtk_label_set_xalign (GTK_LABEL (label), 0);
gtk_container_add (GTK_CONTAINER (gtk_info_bar_get_content_area (GTK_INFO_BAR (bar))), label);
gtk_info_bar_set_default_response (GTK_INFO_BAR (bar), GTK_RESPONSE_OK);
button = gtk_toggle_button_new_with_label ("Question");
g_object_bind_property (bar, "revealed", button, "active", G_BINDING_BIDIRECTIONAL | G_BINDING_SYNC_CREATE);