From 39b08b82ca5c8fadf1d8ac14523e5df0cff6208c Mon Sep 17 00:00:00 2001 From: Carlos Garnacho Date: Mon, 11 Dec 2023 14:22:07 +0100 Subject: [PATCH] gtk-demo: Fix typo Close the quotes in alert dialog message. --- demos/gtk-demo/application.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/gtk-demo/application.c b/demos/gtk-demo/application.c index 7dbbc93731..cfb4ca0870 100644 --- a/demos/gtk-demo/application.c +++ b/demos/gtk-demo/application.c @@ -35,7 +35,7 @@ show_action_dialog (GSimpleAction *action) { GtkAlertDialog *dialog; - dialog = gtk_alert_dialog_new ("You activated action: \"%s\n", + dialog = gtk_alert_dialog_new ("You activated action: \"%s\"", g_action_get_name (G_ACTION (action))); gtk_alert_dialog_show (dialog, NULL); g_object_unref (dialog);