From 626fad8a358edd8274a587a5ee58cfef920ef1e6 Mon Sep 17 00:00:00 2001 From: Theo Linkspfeifer Date: Tue, 12 Nov 2019 15:27:26 +0100 Subject: [PATCH 2/4] Update window title of Find and Replace dialog --- mousepad/mousepad-replace-dialog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mousepad/mousepad-replace-dialog.c b/mousepad/mousepad-replace-dialog.c index 267165e..ee952e8 100644 --- a/mousepad/mousepad-replace-dialog.c +++ b/mousepad/mousepad-replace-dialog.c @@ -133,7 +133,7 @@ mousepad_replace_dialog_init (MousepadReplaceDialog *dialog) GtkSizeGroup *size_group; /* set dialog properties */ - gtk_window_set_title (GTK_WINDOW (dialog), _("Replace")); + gtk_window_set_title (GTK_WINDOW (dialog), _("Find and Replace")); gtk_window_set_default_size (GTK_WINDOW (dialog), 400, -1); gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE); g_signal_connect (G_OBJECT (dialog), "response", G_CALLBACK (mousepad_replace_dialog_response), NULL); -- 2.20.1