diff options
author | Diego Escalante Urrelo <descalante@igalia.com> | 2010-06-08 15:55:27 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <descalante@igalia.com> | 2010-08-31 04:32:58 +0800 |
commit | f966d82fcf85f444b2e123f1b3af1a2591769cc4 (patch) | |
tree | d57c9ec69a5f6783f33a4e36b8be7a877350e8d8 /embed | |
parent | aeb53c06241e56d779cbc849baf2abdd41b04999 (diff) | |
download | gsoc2013-epiphany-f966d82fcf85f444b2e123f1b3af1a2591769cc4.tar gsoc2013-epiphany-f966d82fcf85f444b2e123f1b3af1a2591769cc4.tar.gz gsoc2013-epiphany-f966d82fcf85f444b2e123f1b3af1a2591769cc4.tar.bz2 gsoc2013-epiphany-f966d82fcf85f444b2e123f1b3af1a2591769cc4.tar.lz gsoc2013-epiphany-f966d82fcf85f444b2e123f1b3af1a2591769cc4.tar.xz gsoc2013-epiphany-f966d82fcf85f444b2e123f1b3af1a2591769cc4.tar.zst gsoc2013-epiphany-f966d82fcf85f444b2e123f1b3af1a2591769cc4.zip |
ephy-embed: don't create Save As button manually
Bug #621050
Diffstat (limited to 'embed')
-rw-r--r-- | embed/ephy-embed.c | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c index fa4f90d13..58b0e55d8 100644 --- a/embed/ephy-embed.c +++ b/embed/ephy-embed.c @@ -683,7 +683,7 @@ confirm_action_from_mime (WebKitWebView *web_view, DownloadAction action) { GtkWidget *parent_window; - GtkWidget *dialog, *button, *image; + GtkWidget *dialog; const char *action_label; char *mime_description; EphyMimePermission mime_permission; @@ -777,15 +777,8 @@ confirm_action_from_mime (WebKitWebView *web_view, g_free (mime_description); - button = gtk_button_new_with_mnemonic (_("_Save As...")); - image = gtk_image_new_from_stock (GTK_STOCK_SAVE_AS, GTK_ICON_SIZE_BUTTON); - gtk_button_set_image (GTK_BUTTON (button), image); - gtk_widget_set_can_default (button, TRUE); - /* don't show the image! see bug #307818 */ - gtk_widget_show (button); - gtk_dialog_add_action_widget (GTK_DIALOG (dialog), - button, DOWNLOAD_ACTION_DOWNLOAD); - + gtk_dialog_add_button (GTK_DIALOG (dialog), + GTK_STOCK_SAVE_AS, DOWNLOAD_ACTION_DOWNLOAD); gtk_dialog_add_button (GTK_DIALOG (dialog), GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL); gtk_dialog_add_button (GTK_DIALOG (dialog), |