From efddba40530f2fcb34302e20ba7232affcba566e Mon Sep 17 00:00:00 2001 From: Nick Treleaven Date: Tue, 24 Oct 2006 16:15:29 +0000 Subject: [PATCH] Reorder Replace All buttons. git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@923 ea778897-0a13-0410-b9d1-a72fbfd435f5 --- src/search.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/search.c b/src/search.c index cd7dc12a..f0542977 100644 --- a/src/search.c +++ b/src/search.c @@ -386,16 +386,16 @@ void search_show_replace_dialog() g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(send_replace_dialog_response), GINT_TO_POINTER(GEANY_RESPONSE_REPLACE_IN_SEL)); - button = gtk_button_new_with_mnemonic(_("In F_ile")); - gtk_container_add(GTK_CONTAINER(bbox), button); - g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(send_replace_dialog_response), - GINT_TO_POINTER(GEANY_RESPONSE_REPLACE_IN_FILE)); - button = gtk_button_new_with_mnemonic(_("In Sessi_on")); gtk_container_add(GTK_CONTAINER(bbox), button); g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(send_replace_dialog_response), GINT_TO_POINTER(GEANY_RESPONSE_REPLACE_IN_SESSION)); + button = gtk_button_new_with_mnemonic(_("In F_ile")); + gtk_container_add(GTK_CONTAINER(bbox), button); + g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(send_replace_dialog_response), + GINT_TO_POINTER(GEANY_RESPONSE_REPLACE_IN_FILE)); + gtk_size_group_add_widget(GTK_SIZE_GROUP(button_size), button); // Don't close window checkbox