[Goodies-commits] r2458 - in thunar-media-tags-plugin/trunk: . thunar-plugin

Jannis Pohlmann jannis at xfce.org
Mon Jan 22 09:45:11 CET 2007


Author: jannis
Date: 2007-01-22 08:45:10 +0000 (Mon, 22 Jan 2007)
New Revision: 2458

Modified:
   thunar-media-tags-plugin/trunk/ChangeLog
   thunar-media-tags-plugin/trunk/thunar-plugin/audio-tags-page.c
Log:
	* thunar-plugin/audio-tags-page.c: Reduce year spin button 
	  acceleration to 0.0 instead of 1.0. Fixes bug #2777.

Modified: thunar-media-tags-plugin/trunk/ChangeLog
===================================================================
--- thunar-media-tags-plugin/trunk/ChangeLog	2007-01-21 22:29:42 UTC (rev 2457)
+++ thunar-media-tags-plugin/trunk/ChangeLog	2007-01-22 08:45:10 UTC (rev 2458)
@@ -1,3 +1,8 @@
+2007-01-22	Jannis Pohlmann <jannis at xfce.org>
+
+	* thunar-plugin/audio-tags-page.c: Reduce year spin button 
+	  acceleration to 0.0 instead of 1.0. Fixes bug #2777.
+
 2007-01-20	Jannis Pohlmann <jannis at xfce.org>
 
 	* configure.in.in: Post-release version bump.

Modified: thunar-media-tags-plugin/trunk/thunar-plugin/audio-tags-page.c
===================================================================
--- thunar-media-tags-plugin/trunk/thunar-plugin/audio-tags-page.c	2007-01-21 22:29:42 UTC (rev 2457)
+++ thunar-media-tags-plugin/trunk/thunar-plugin/audio-tags-page.c	2007-01-22 08:45:10 UTC (rev 2458)
@@ -315,7 +315,7 @@
   adjustment = gtk_adjustment_new (0, 0, 999, 1, 5, 10);
 
   /* Track spin button */
-  spin = gtk_spin_button_new (GTK_ADJUSTMENT (adjustment), 1, 0);
+  spin = gtk_spin_button_new (GTK_ADJUSTMENT (adjustment), 0.0, 0);
   exo_mutual_binding_new (G_OBJECT (adjustment), "value", G_OBJECT (page), "track");
   gtk_tooltips_set_tip (page->tooltips, spin, _("Enter the track number here."), NULL);
   gtk_container_add (GTK_CONTAINER (alignment), spin);




More information about the Goodies-commits mailing list