[Xfce4-commits] r29986 - in xfce4-mixer/trunk: . panel-plugin

Jannis Pohlmann jannis at xfce.org
Thu May 28 16:41:40 CEST 2009


Author: jannis
Date: 2009-05-28 14:41:40 +0000 (Thu, 28 May 2009)
New Revision: 29986

Modified:
   xfce4-mixer/trunk/ChangeLog
   xfce4-mixer/trunk/panel-plugin/xfce-volume-button.c
Log:
	* panel-plugin/xfce-volume-button.c: Set the page size to 0 which
	  allows the volume to be changed up to 100% instead of just 90% (bug
	  #5243).

Conflicts:

	ChangeLog

Modified: xfce4-mixer/trunk/ChangeLog
===================================================================
--- xfce4-mixer/trunk/ChangeLog	2009-05-28 13:50:28 UTC (rev 29985)
+++ xfce4-mixer/trunk/ChangeLog	2009-05-28 14:41:40 UTC (rev 29986)
@@ -1,3 +1,9 @@
+2009-05-28	Jannis Pohlmann <jannis at xfce.org>
+
+	* panel-plugin/xfce-volume-button.c: Set the page size to 0 which
+	  allows the volume to be changed up to 100% instead of just 90% (bug
+	  #5243).
+
 2009-04-18  Stephan Arts <stephan at xfce.org>
 
 	* == Xfce 4.6.1 Released ==

Modified: xfce4-mixer/trunk/panel-plugin/xfce-volume-button.c
===================================================================
--- xfce4-mixer/trunk/panel-plugin/xfce-volume-button.c	2009-05-28 13:50:28 UTC (rev 29985)
+++ xfce4-mixer/trunk/panel-plugin/xfce-volume-button.c	2009-05-28 14:41:40 UTC (rev 29986)
@@ -202,7 +202,7 @@
   button->pixbufs = g_new0 (GdkPixbuf*, G_N_ELEMENTS (icons)-1);
 
   /* Create adjustment for the button (from 0.0 to 1.0 in 5% steps) */
-  button->adjustment = gtk_adjustment_new (0.0, 0.0, 1.0, 0.05, 0.05, 0.1);
+  button->adjustment = gtk_adjustment_new (0.0, 0.0, 1.0, 0.05, 0.05, 0.0);
 
   /* Create a new scaled image for the button icon */
   button->image = xfce_scaled_image_new ();




More information about the Xfce4-commits mailing list