From fd7a9069ce21de0fd9fa62dd8a45d02e16aed7df Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 1 Sep 2020 22:32:02 -0400 Subject: Cosmetic improvement to the layout manager demo Give this a better title, since we will have more than one layout manager demo soon. --- demos/gtk-demo/layoutmanager.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'demos/gtk-demo/layoutmanager.c') diff --git a/demos/gtk-demo/layoutmanager.c b/demos/gtk-demo/layoutmanager.c index 3a715d0fc8..e01d7c981e 100644 --- a/demos/gtk-demo/layoutmanager.c +++ b/demos/gtk-demo/layoutmanager.c @@ -1,10 +1,11 @@ /* Layout Manager * - * This examples shows a simple example of a custom layout manager + * This demo shows a simple example of a custom layout manager * and a widget using it. The layout manager places the children - * of the widget in a grid or a circle, or something in between. + * of the widget in a grid or a circle. * * The widget is animating the transition between the two layouts. + * * Click to start the transition. */ @@ -32,7 +33,7 @@ do_layoutmanager (GtkWidget *parent) int i; window = gtk_window_new (); - gtk_window_set_title (GTK_WINDOW (window), "Layout Manager"); + gtk_window_set_title (GTK_WINDOW (window), "Layout Manager—Transition"); gtk_window_set_default_size (GTK_WINDOW (window), 600, 600); g_object_add_weak_pointer (G_OBJECT (window), (gpointer *)&window); -- cgit v1.2.1