Mercurial > mplayer.hg
changeset 36824:836563c39dac
Set the step increment for panscan to 0.1.
author | ib |
---|---|
date | Mon, 24 Feb 2014 11:28:34 +0000 |
parents | edfa61ced4ad |
children | 33a9206d27d3 |
files | gui/dialog/preferences.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/gui/dialog/preferences.c Mon Feb 24 10:38:57 2014 +0000 +++ b/gui/dialog/preferences.c Mon Feb 24 11:28:34 2014 +0000 @@ -735,7 +735,7 @@ label=gtkAddLabel( MSGTR_GUI_FrameRate":",NULL ); gtk_table_attach( GTK_TABLE( table1 ),label,0,1,1,2,(GtkAttachOptions)( GTK_FILL ),(GtkAttachOptions)( 0 ),0,0 ); - HSPanscanadj=GTK_ADJUSTMENT( gtk_adjustment_new( 0,0,1,0.001,0,0 ) ); + HSPanscanadj=GTK_ADJUSTMENT( gtk_adjustment_new( 0,0,1,0.1,0,0 ) ); HSPanscan=gtkAddHScale( HSPanscanadj,NULL,1 ); gtk_table_attach( GTK_TABLE( table1 ),HSPanscan,1,2,0,1,(GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),(GtkAttachOptions)( 0 ),0,0 );