From 8a8dab66cc0fd5442d64957baa0c5a5684558487 Mon Sep 17 00:00:00 2001 From: Jacob Boerema Date: Thu, 9 Oct 2025 12:19:44 -0400 Subject: [PATCH] plug-ins: change gimpressionist button labels to Delete... in the Orientation and Size map dialogs. They were named Kill which seems less appropriate. --- plug-ins/gimpressionist/orientmap.c | 2 +- plug-ins/gimpressionist/sizemap.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plug-ins/gimpressionist/orientmap.c b/plug-ins/gimpressionist/orientmap.c index 455ea5ed3b..dae6d5840f 100644 --- a/plug-ins/gimpressionist/orientmap.c +++ b/plug-ins/gimpressionist/orientmap.c @@ -620,7 +620,7 @@ create_orientmap_dialog (GtkWidget *parent) g_signal_connect (tmpw, "clicked", G_CALLBACK (add_click_callback), NULL); gimp_help_set_help_data (tmpw, _("Add new vector"), NULL); - kill_button = tmpw = gtk_button_new_with_mnemonic ( _("_Kill")); + kill_button = tmpw = gtk_button_new_with_mnemonic ( _("_Delete")); gtk_box_pack_start (GTK_BOX (hbox), tmpw, FALSE, TRUE, 0); gtk_widget_show (tmpw); g_signal_connect (tmpw, "clicked", G_CALLBACK (delete_click_callback), NULL); diff --git a/plug-ins/gimpressionist/sizemap.c b/plug-ins/gimpressionist/sizemap.c index b2fc663b53..413c48cf5c 100644 --- a/plug-ins/gimpressionist/sizemap.c +++ b/plug-ins/gimpressionist/sizemap.c @@ -492,7 +492,7 @@ create_sizemap_dialog (GtkWidget *parent) G_CALLBACK (smaddclick), NULL); gimp_help_set_help_data (tmpw, _("Add new smvector"), NULL); - kill_button = tmpw = gtk_button_new_with_mnemonic (_("_Kill")); + kill_button = tmpw = gtk_button_new_with_mnemonic (_("_Delete")); gtk_box_pack_start (GTK_BOX (hbox),tmpw,FALSE,TRUE,0); gtk_widget_show (tmpw); g_signal_connect (tmpw, "clicked",