From 30c3f34d61827ed1a50e16c09d6d1b0875ab7053 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Thu, 16 Jun 2005 12:38:13 +0000 Subject: Don't show the image after gtk_button_set_image(). Fixes bug #307818. 2005-06-16 Christian Persch * embed/mozilla/ContentHandler.cpp: * src/ephy-fullscreen-popup.c: (ephy_fullscreen_popup_constructor): * src/ephy-history-window.c: (confirmation_dialog_construct): Don't show the image after gtk_button_set_image(). Fixes bug #307818. --- embed/mozilla/ContentHandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'embed') diff --git a/embed/mozilla/ContentHandler.cpp b/embed/mozilla/ContentHandler.cpp index 91ca2b88d..39b032278 100644 --- a/embed/mozilla/ContentHandler.cpp +++ b/embed/mozilla/ContentHandler.cpp @@ -323,7 +323,7 @@ NS_METHOD GContentHandler::MIMEConfirmAction () button = gtk_button_new_with_label (_("_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_show (image); + /* don't show the image! see bug #307818 */ gtk_widget_show (button); gtk_dialog_add_action_widget (GTK_DIALOG (dialog), button, CONTENT_ACTION_SAVEAS); -- cgit v1.2.3