diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2008-05-06 18:34:04 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2008-05-06 18:34:04 +0200 |
commit | aea2a0e31aa53c2d491418e9816571489c6e0af9 (patch) | |
tree | 85092e528b3c33c0f4e812767e8ea93dff529d34 /src/plugins/xfer/xfer-config.c | |
parent | 5689970cb1db504aa6a9bda901f7861e4a6d9fc4 (diff) | |
download | weechat-aea2a0e31aa53c2d491418e9816571489c6e0af9.zip |
Do not automatically switch to xfer buffer, except by /xfer command
Diffstat (limited to 'src/plugins/xfer/xfer-config.c')
-rw-r--r-- | src/plugins/xfer/xfer-config.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/plugins/xfer/xfer-config.c b/src/plugins/xfer/xfer-config.c index 3efc0e487..6b1961015 100644 --- a/src/plugins/xfer/xfer-config.c +++ b/src/plugins/xfer/xfer-config.c @@ -38,7 +38,7 @@ struct t_config_option *xfer_config_look_progress_bar_size; struct t_config_option *xfer_config_color_text; struct t_config_option *xfer_config_color_text_bg; -struct t_config_option *xfer_config_color_selected_bg; +struct t_config_option *xfer_config_color_text_selected; struct t_config_option *xfer_config_color_status[XFER_NUM_STATUS]; /* xfer config, network section */ @@ -102,7 +102,7 @@ xfer_config_init () xfer_config_look_auto_open_buffer = weechat_config_new_option ( xfer_config_file, ptr_section, "auto_open_buffer", "boolean", - N_("auto open xfer buffer and switch to it when a new xfer is added " + N_("auto open xfer buffer when a new xfer is added " "to list"), NULL, 0, 0, "on", NULL, NULL, NULL, NULL, NULL, NULL); xfer_config_look_progress_bar_size = weechat_config_new_option ( @@ -134,11 +134,11 @@ xfer_config_init () N_("background color"), NULL, 0, 0, "default", NULL, NULL, NULL, NULL, NULL, NULL); - xfer_config_color_selected_bg = weechat_config_new_option ( + xfer_config_color_text_selected = weechat_config_new_option ( xfer_config_file, ptr_section, - "selected_bg", "color", - N_("background color for selected line"), - NULL, 0, 0, "magenta", + "text_selected", "color", + N_("text color of selected xfer line"), + NULL, 0, 0, "white", NULL, NULL, NULL, NULL, NULL, NULL); xfer_config_color_status[XFER_STATUS_WAITING] = weechat_config_new_option ( xfer_config_file, ptr_section, |