# HG changeset patch # User Nathan Walp # Date 1063126510 0 # Node ID fac483a95584490c32b5aa1849844b61fb02e234 # Parent 17a446f5e99b982810fda30b3c07d508800add0c [gaim-migrate @ 7339] I need to write some sort of script that checks for this sort of stuff. committer: Tailor Script diff -r 17a446f5e99b -r fac483a95584 src/gaimrc.c --- a/src/gaimrc.c Tue Sep 09 15:22:10 2003 +0000 +++ b/src/gaimrc.c Tue Sep 09 16:55:10 2003 +0000 @@ -1055,6 +1055,8 @@ im_options & OPT_IM_ALIAS_TAB); gaim_prefs_set_bool("/gaim/gtk/conversations/im/hide_on_send", (im_options & OPT_IM_POPDOWN)); + gaim_prefs_set_bool("/gaim/gtk/conversations/tabs", + im_options & OPT_IM_ONE_WINDOW); } else if (!strcmp(p->option, "conv_placement")) { switch(atoi(p->value[0])) { diff -r 17a446f5e99b -r fac483a95584 src/gtkprefs.c --- a/src/gtkprefs.c Tue Sep 09 15:22:10 2003 +0000 +++ b/src/gtkprefs.c Tue Sep 09 16:55:10 2003 +0000 @@ -926,6 +926,10 @@ button = prefs_checkbox(_("Show IMs and chats in _tabbed windows"), "/gaim/gtk/conversations/tabs", vbox); + /* XXX: grey this out when the above is unchecked */ + button = prefs_checkbox(_("Show IMs and chats in _same tabbed window"), + "/core/conversations/combine_chat_im", vbox); + close_checkbox = prefs_checkbox(_("Show _close button on tabs"), "/gaim/gtk/conversations/close_on_tabs", vbox);