change the order of the buttons to match the HIG.

2005-07-16  Diego Gonzalez <diego@pemas.net>

    * 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.
This commit is contained in:
Diego Gonzalez 2005-07-16 21:42:40 +00:00 committed by Diego González
parent 6b0cd523f8
commit 35a9a8f946
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2005-07-16 Diego Gonzalez <diego@pemas.net>
* 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 <dennis_cranston at yahoo com>
* gnome-about-me-password.c (passdlg_check_password_timeout_cb):

View file

@ -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);