[MPlayer-cvslog] r36681 - trunk/gui/dialog/preferences.c

ib subversion at mplayerhq.hu
Tue Jan 21 19:45:02 CET 2014


Author: ib
Date: Tue Jan 21 19:45:02 2014
New Revision: 36681

Log:
Fix table sizes.

The numbers of rows were wrong.

Modified:
   trunk/gui/dialog/preferences.c

Modified: trunk/gui/dialog/preferences.c
==============================================================================
--- trunk/gui/dialog/preferences.c	Tue Jan 21 16:25:26 2014	(r36680)
+++ trunk/gui/dialog/preferences.c	Tue Jan 21 19:45:02 2014	(r36681)
@@ -711,7 +711,7 @@ static GtkWidget * CreatePreferences( vo
   CBHFramedrop=gtkAddCheckButton( MSGTR_PREFERENCES_HFrameDrop,vbox5 );
   CBFlip=gtkAddCheckButton( MSGTR_PREFERENCES_Flip,vbox5 );
 
-  table1=gtk_table_new( 3,2,FALSE );
+  table1=gtk_table_new( 2,2,FALSE );
   gtk_widget_show( table1 );
   gtk_box_pack_start( GTK_BOX( vbox5 ),table1,FALSE,FALSE,0 );
 
@@ -767,7 +767,7 @@ static GtkWidget * CreatePreferences( vo
 
   vbox8=gtkAddVBox( vbox7,0 );
 
-  table1=gtk_table_new( 3,2,FALSE );
+  table1=gtk_table_new( 4,2,FALSE );
   gtk_widget_show( table1 );
   gtk_box_pack_start( GTK_BOX( vbox8 ),table1,FALSE,FALSE,0 );
 
@@ -889,7 +889,7 @@ static GtkWidget * CreatePreferences( vo
   RBFontAutoScaleWidth=gtkAddRadioButton( MSGTR_PREFERENCES_FontPropWidth,&Font_group,vbox603 );
   RBFontAutoScaleDiagonal=gtkAddRadioButton( MSGTR_PREFERENCES_FontPropDiagonal,&Font_group,vbox603 );
 
-  table1=gtk_table_new( 3,2,FALSE );
+  table1=gtk_table_new( 5,2,FALSE );
   gtk_widget_show( table1 );
   gtk_box_pack_start( GTK_BOX( vbox603 ),table1,FALSE,FALSE,0 );
 
@@ -1620,7 +1620,7 @@ static GtkWidget *CreateAudioConfig( voi
 
   vbox = gtkAddVBox(gtkAddDialogFrame(AudioConfig), 0);
 
-  table = gtk_table_new(2, 3, FALSE);
+  table = gtk_table_new(3, 2, FALSE);
   gtk_widget_show(table);
   gtk_box_pack_start(GTK_BOX(vbox), table, TRUE, TRUE, 0);
 


More information about the MPlayer-cvslog mailing list