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
parent 0b0a5a52af
commit 39b08b82ca

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