diff gui/dialog/preferences.c @ 36585:4e5366f99306

Fix table sizes. The numbers of rows were wrong.
author ib
date Tue, 21 Jan 2014 18:45:02 +0000
parents 5fec70008532
children 7c0c1a5642f9
line wrap: on
line diff
--- a/gui/dialog/preferences.c	Tue Jan 21 15:25:26 2014 +0000
+++ b/gui/dialog/preferences.c	Tue Jan 21 18:45:02 2014 +0000
@@ -711,7 +711,7 @@
   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 @@
 
   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 @@
   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 @@
 
   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);