Revision: 1007 http://svn.sourceforge.net/geany/?rev=1007&view=rev Author: ntrel Date: 2006-11-17 04:16:20 -0800 (Fri, 17 Nov 2006)
Log Message: ----------- Change Find Next/Previous buttons to use better stock icons
Modified Paths: -------------- trunk/src/search.c
Modified: trunk/src/search.c =================================================================== --- trunk/src/search.c 2006-11-16 23:26:44 UTC (rev 1006) +++ trunk/src/search.c 2006-11-17 12:16:20 UTC (rev 1007) @@ -261,13 +261,13 @@ vbox = ui_dialog_vbox_new(GTK_DIALOG(widgets.find_dialog)); gtk_box_set_spacing(GTK_BOX(vbox), 9);
- button = gtk_button_new_with_mnemonic(_("Find _Previous")); + button = ui_button_new_with_image(GTK_STOCK_GO_BACK, _("_Previous")); gtk_dialog_add_action_widget(GTK_DIALOG(widgets.find_dialog), button, GEANY_RESPONSE_FIND_PREVIOUS); g_object_set_data_full(G_OBJECT(widgets.find_dialog), "btn_previous", gtk_widget_ref(button), (GDestroyNotify)gtk_widget_unref);
- button = ui_button_new_with_image(GTK_STOCK_FIND, _("Find _Next")); + button = ui_button_new_with_image(GTK_STOCK_GO_FORWARD, _("_Next")); gtk_dialog_add_action_widget(GTK_DIALOG(widgets.find_dialog), button, GEANY_RESPONSE_FIND);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.