Author: weskaggs
Date: Sun Feb 10 20:38:15 2008
New Revision: 24852
URL: http://svn.gnome.org/viewvc/gimp?rev=24852&view=rev
Log:
Bill Skaggs <[EMAIL PROTECTED]>
* app/widgets/gimpeditor.c: draw editor buttons without
relief, see bug #515621.
Modified:
trunk/ChangeLog
trunk/app/widgets/gimpeditor.c
Modified: trunk/app/widgets/gimpeditor.c
==============================================================================
--- trunk/app/widgets/gimpeditor.c (original)
+++ trunk/app/widgets/gimpeditor.c Sun Feb 10 20:38:15 2008
@@ -489,6 +489,7 @@
image = gtk_image_new_from_stock (stock_id, button_icon_size);
gtk_container_add (GTK_CONTAINER (button), image);
+ gtk_button_set_relief (GTK_BUTTON (button), GTK_RELIEF_NONE);
gtk_widget_show (image);
return button;
@@ -620,6 +621,7 @@
else
{
button = gimp_button_new ();
+ gtk_button_set_relief (GTK_BUTTON (button), GTK_RELIEF_NONE);
}
g_object_get (action,
_______________________________________________
SVN-commits-list mailing list (read only)
http://mail.gnome.org/mailman/listinfo/svn-commits-list
Want to limit the commits to a few modules? Go to above URL, log in to edit
your options and select the modules ('topics') you want.
Module maintainer? It is possible to set the reply-to to your development
mailing list. Email [EMAIL PROTECTED] if interested.