improve behaviour of GTKFileChooser

EXPAND and FILL = FALSE
This commit is contained in:
Emmanuel Milou
2008-03-14 16:06:43 -04:00
parent c1b0dec0bf
commit 33088f324d

View File

@ -1112,7 +1112,7 @@ create_audio_tab ()
// check button to enable ringtones
GtkWidget* box = gtk_hbox_new( TRUE , 1);
gtk_box_pack_start( GTK_BOX(ret) , box , TRUE , TRUE , 1);
gtk_box_pack_start( GTK_BOX(ret) , box , FALSE , FALSE , 1);
enableTone = gtk_check_button_new_with_mnemonic( "_Enable ringtones");
gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON(enableTone), dbus_is_ringtone_enabled() );
gtk_box_pack_start( GTK_BOX(box) , enableTone , TRUE , TRUE , 1);