From 35a9a8f946658b0ce4a6132488d0396a40d17d4b Mon Sep 17 00:00:00 2001 From: Diego Gonzalez Date: Sat, 16 Jul 2005 21:42:40 +0000 Subject: [PATCH] change the order of the buttons to match the HIG. 2005-07-16 Diego Gonzalez * gnome-about-me.c (about_me_image_clicked_cb): change the order of the buttons to match the HIG. Patch by Denis Cranston. Fixes bug 309632. --- capplets/about-me/ChangeLog | 7 +++++++ capplets/about-me/gnome-about-me.c | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/capplets/about-me/ChangeLog b/capplets/about-me/ChangeLog index 66909b84e..921915072 100644 --- a/capplets/about-me/ChangeLog +++ b/capplets/about-me/ChangeLog @@ -1,3 +1,10 @@ +2005-07-16 Diego Gonzalez + + * gnome-about-me.c (about_me_image_clicked_cb): change the order + of the buttons to match the HIG. + + Patch by Denis Cranston. Fixes bug 309632. + 2005-07-12 Dennis Cranston * gnome-about-me-password.c (passdlg_check_password_timeout_cb): diff --git a/capplets/about-me/gnome-about-me.c b/capplets/about-me/gnome-about-me.c index ba5acef7f..ef58211a6 100644 --- a/capplets/about-me/gnome-about-me.c +++ b/capplets/about-me/gnome-about-me.c @@ -553,9 +553,9 @@ about_me_image_clicked_cb (GtkWidget *button, GnomeAboutMe *me) chooser_dialog = gtk_file_chooser_dialog_new (_("Select Image"), GTK_WINDOW (WID ("about-me-dialog")), GTK_FILE_CHOOSER_ACTION_OPEN, + _("No Image"), GTK_RESPONSE_NO, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT, - _("No Image"), GTK_RESPONSE_NO, NULL); gtk_window_set_modal (GTK_WINDOW (chooser_dialog), TRUE); gtk_dialog_set_default_response (GTK_DIALOG (chooser_dialog), GTK_RESPONSE_ACCEPT);