# HG changeset patch # User ib # Date 1390329902 0 # Node ID 4e5366f993060672b9f16fb04fab0865a231d86c # Parent 5fec700085324ea7e3caeff380cdc46f5e29cae2 Fix table sizes. The numbers of rows were wrong. diff -r 5fec70008532 -r 4e5366f99306 gui/dialog/preferences.c --- 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);