gtk-demo: Fix typo

Close the quotes in alert dialog message.
This commit is contained in:
Carlos Garnacho
2023-12-11 14:22:07 +01:00
committed by Matthias Clasen
parent db0a97f374
commit 9c804b3fd7

View File

@@ -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);