[xiph-commits] r7883 - trunk/postfish

xiphmont at motherfish-iii.xiph.org xiphmont at motherfish-iii.xiph.org
Sun Sep 26 23:04:28 PDT 2004


Author: xiphmont
Date: 2004-09-26 23:04:27 -0700 (Sun, 26 Sep 2004)
New Revision: 7883

Modified:
   trunk/postfish/deverbpanel.c
Log:
Correct argument order bug in default timing settings


Modified: trunk/postfish/deverbpanel.c
===================================================================
--- trunk/postfish/deverbpanel.c	2004-09-26 21:43:53 UTC (rev 7882)
+++ trunk/postfish/deverbpanel.c	2004-09-27 06:04:27 UTC (rev 7883)
@@ -219,8 +219,8 @@
 
     multibar_callback(MULTIBAR(slider),timing_change,&ps->timing);
     
-    multibar_thumb_set(MULTIBAR(slider),100,0);
-    multibar_thumb_set(MULTIBAR(slider),400,1);
+    multibar_thumb_set(MULTIBAR(slider),0,100);
+    multibar_thumb_set(MULTIBAR(slider),1,400);
 
     gtk_table_attach(GTK_TABLE(table),slider,1,2,1,2,
 		     GTK_FILL|GTK_EXPAND,GTK_EXPAND,5,0);



More information about the commits mailing list