Bug 442042 – GtkScaleButton is too limited

2008-06-27  Michael Natterer  <mitch@imendio.com>

	Bug 442042 – GtkScaleButton is too limited

	* gtk/gtkscalebutton.c (gtk_scale_button_init): set the name
	"gtk-scalebutton-popup-window" on the popup window so it is
	properly themeable.


svn path=/trunk/; revision=20698
This commit is contained in:
Michael Natterer 2008-06-27 20:13:25 +00:00 committed by Michael Natterer
parent cf3542155f
commit b8cee08351
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,11 @@
2008-06-27 Michael Natterer <mitch@imendio.com>
Bug 442042 GtkScaleButton is too limited
* gtk/gtkscalebutton.c (gtk_scale_button_init): set the name
"gtk-scalebutton-popup-window" on the popup window so it is
properly themeable.
2008-06-27 Kristian Rietveld <kris@imendio.com>
* gdk/quartz/gdkgeometry-quartz.c:

View File

@ -345,6 +345,7 @@ gtk_scale_button_init (GtkScaleButton *button)
/* window */
priv->dock = gtk_window_new (GTK_WINDOW_POPUP);
gtk_widget_set_name (priv->dock, "gtk-scalebutton-popup-window");
g_signal_connect (priv->dock, "button-press-event",
G_CALLBACK (cb_dock_button_press), button);
g_signal_connect (priv->dock, "key-release-event",