Need to show the image after adding it to the GtkImageMenuItem. This used
2001-08-04 Michael Natterer <mitch@gimp.org> * gtk/gtkitemfactory.c (gtk_item_factory_create_item): Need to show the image after adding it to the GtkImageMenuItem. This used to work without in testgtk because of the gtk_widget_show_all() at the end of the function. (Closes #54978).
This commit is contained in:
parent
8dfce4590b
commit
b092021ba6
@ -1,3 +1,11 @@
|
||||
2001-08-04 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* gtk/gtkitemfactory.c (gtk_item_factory_create_item):
|
||||
Need to show the image after adding it to the GtkImageMenuItem.
|
||||
This used to work without in testgtk because of the
|
||||
gtk_widget_show_all() at the end of the function.
|
||||
(Closes #54978).
|
||||
|
||||
Tue Jul 31 22:59:33 2001 Tim Janik <timj@gtk.org>
|
||||
|
||||
* gtk/gtknotebook.c (gtk_notebook_get_child_property):
|
||||
|
@ -1,3 +1,11 @@
|
||||
2001-08-04 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* gtk/gtkitemfactory.c (gtk_item_factory_create_item):
|
||||
Need to show the image after adding it to the GtkImageMenuItem.
|
||||
This used to work without in testgtk because of the
|
||||
gtk_widget_show_all() at the end of the function.
|
||||
(Closes #54978).
|
||||
|
||||
Tue Jul 31 22:59:33 2001 Tim Janik <timj@gtk.org>
|
||||
|
||||
* gtk/gtknotebook.c (gtk_notebook_get_child_property):
|
||||
|
@ -1,3 +1,11 @@
|
||||
2001-08-04 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* gtk/gtkitemfactory.c (gtk_item_factory_create_item):
|
||||
Need to show the image after adding it to the GtkImageMenuItem.
|
||||
This used to work without in testgtk because of the
|
||||
gtk_widget_show_all() at the end of the function.
|
||||
(Closes #54978).
|
||||
|
||||
Tue Jul 31 22:59:33 2001 Tim Janik <timj@gtk.org>
|
||||
|
||||
* gtk/gtknotebook.c (gtk_notebook_get_child_property):
|
||||
|
@ -1,3 +1,11 @@
|
||||
2001-08-04 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* gtk/gtkitemfactory.c (gtk_item_factory_create_item):
|
||||
Need to show the image after adding it to the GtkImageMenuItem.
|
||||
This used to work without in testgtk because of the
|
||||
gtk_widget_show_all() at the end of the function.
|
||||
(Closes #54978).
|
||||
|
||||
Tue Jul 31 22:59:33 2001 Tim Janik <timj@gtk.org>
|
||||
|
||||
* gtk/gtknotebook.c (gtk_notebook_get_child_property):
|
||||
|
@ -1,3 +1,11 @@
|
||||
2001-08-04 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* gtk/gtkitemfactory.c (gtk_item_factory_create_item):
|
||||
Need to show the image after adding it to the GtkImageMenuItem.
|
||||
This used to work without in testgtk because of the
|
||||
gtk_widget_show_all() at the end of the function.
|
||||
(Closes #54978).
|
||||
|
||||
Tue Jul 31 22:59:33 2001 Tim Janik <timj@gtk.org>
|
||||
|
||||
* gtk/gtknotebook.c (gtk_notebook_get_child_property):
|
||||
|
@ -1,3 +1,11 @@
|
||||
2001-08-04 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* gtk/gtkitemfactory.c (gtk_item_factory_create_item):
|
||||
Need to show the image after adding it to the GtkImageMenuItem.
|
||||
This used to work without in testgtk because of the
|
||||
gtk_widget_show_all() at the end of the function.
|
||||
(Closes #54978).
|
||||
|
||||
Tue Jul 31 22:59:33 2001 Tim Janik <timj@gtk.org>
|
||||
|
||||
* gtk/gtknotebook.c (gtk_notebook_get_child_property):
|
||||
|
@ -1,3 +1,11 @@
|
||||
2001-08-04 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* gtk/gtkitemfactory.c (gtk_item_factory_create_item):
|
||||
Need to show the image after adding it to the GtkImageMenuItem.
|
||||
This used to work without in testgtk because of the
|
||||
gtk_widget_show_all() at the end of the function.
|
||||
(Closes #54978).
|
||||
|
||||
Tue Jul 31 22:59:33 2001 Tim Janik <timj@gtk.org>
|
||||
|
||||
* gtk/gtknotebook.c (gtk_notebook_get_child_property):
|
||||
|
@ -1234,7 +1234,11 @@ gtk_item_factory_create_item (GtkItemFactory *ifactory,
|
||||
image = gtk_image_new_from_pixbuf (pixbuf);
|
||||
|
||||
if (image)
|
||||
gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (widget), image);
|
||||
{
|
||||
gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (widget), image);
|
||||
|
||||
gtk_widget_show (image);
|
||||
}
|
||||
|
||||
if (pixbuf)
|
||||
g_object_unref (G_OBJECT (pixbuf));
|
||||
@ -1244,7 +1248,9 @@ gtk_item_factory_create_item (GtkItemFactory *ifactory,
|
||||
image = gtk_image_new_from_stock (entry->extra_data, GTK_ICON_SIZE_MENU);
|
||||
|
||||
gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (widget), image);
|
||||
|
||||
|
||||
gtk_widget_show (image);
|
||||
|
||||
if (gtk_stock_lookup (entry->extra_data, &stock_item))
|
||||
{
|
||||
if (!accelerator)
|
||||
|
Loading…
Reference in New Issue
Block a user