comparison src/gtkprefs.c @ 10972:d5ce9d01f540

[gaim-migrate @ 12797] sf patch #1213951, from Abdulla Kamar Simple one liner, puts some space between the options under "Tab Options" (vbox2) in "Interface > Conversation" within the Preferences dialog committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 06 Jun 2005 02:19:03 +0000
parents bfb3ac69cdd0
children 65c56b8490c5
comparison
equal deleted inserted replaced
10971:57e3e958ff49 10972:d5ce9d01f540
954 954
955 /* 955 /*
956 * Connect a signal to the above preference. When conversations are not 956 * Connect a signal to the above preference. When conversations are not
957 * shown in a tabbed window then all tabbing options should be disabled. 957 * shown in a tabbed window then all tabbing options should be disabled.
958 */ 958 */
959 vbox2 = gtk_vbox_new(FALSE, 0); 959 vbox2 = gtk_vbox_new(FALSE, 9);
960 gtk_box_pack_start(GTK_BOX(vbox), vbox2, FALSE, FALSE, 0); 960 gtk_box_pack_start(GTK_BOX(vbox), vbox2, FALSE, FALSE, 0);
961 gaim_prefs_connect_callback(prefs, "/gaim/gtk/conversations/tabs", 961 gaim_prefs_connect_callback(prefs, "/gaim/gtk/conversations/tabs",
962 conversation_usetabs_cb, vbox2); 962 conversation_usetabs_cb, vbox2);
963 if (!gaim_prefs_get_bool("/gaim/gtk/conversations/tabs")) 963 if (!gaim_prefs_get_bool("/gaim/gtk/conversations/tabs"))
964 gtk_widget_set_sensitive(vbox2, FALSE); 964 gtk_widget_set_sensitive(vbox2, FALSE);