forked from PsychoticNinja/irssi
/SET hide_mirc_colors - patch by paul@raade.org
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2218 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
0f29e57c14
commit
9b08e5c640
@ -161,6 +161,7 @@ void fe_common_core_init(void)
|
|||||||
settings_add_bool("lookandfeel", "beep_when_away", TRUE);
|
settings_add_bool("lookandfeel", "beep_when_away", TRUE);
|
||||||
|
|
||||||
settings_add_bool("lookandfeel", "hide_text_style", FALSE);
|
settings_add_bool("lookandfeel", "hide_text_style", FALSE);
|
||||||
|
settings_add_bool("lookandfeel", "hide_mirc_colors", FALSE);
|
||||||
settings_add_bool("lookandfeel", "hide_server_tags", FALSE);
|
settings_add_bool("lookandfeel", "hide_server_tags", FALSE);
|
||||||
|
|
||||||
settings_add_bool("lookandfeel", "use_status_window", TRUE);
|
settings_add_bool("lookandfeel", "use_status_window", TRUE);
|
||||||
|
@ -37,7 +37,7 @@ static const char *format_fores = "kbgcrmyw";
|
|||||||
static const char *format_boldfores = "KBGCRMYW";
|
static const char *format_boldfores = "KBGCRMYW";
|
||||||
|
|
||||||
static int signal_gui_print_text;
|
static int signal_gui_print_text;
|
||||||
static int hide_text_style, hide_server_tags;
|
static int hide_text_style, hide_server_tags, hide_mirc_colors;
|
||||||
|
|
||||||
static int timestamps, msgs_timestamps;
|
static int timestamps, msgs_timestamps;
|
||||||
static int timestamp_timeout;
|
static int timestamp_timeout;
|
||||||
@ -940,9 +940,9 @@ void format_send_to_gui(TEXT_DEST_REC *dest, const char *text)
|
|||||||
case 3:
|
case 3:
|
||||||
/* MIRC color */
|
/* MIRC color */
|
||||||
get_mirc_color((const char **) &ptr,
|
get_mirc_color((const char **) &ptr,
|
||||||
hide_text_style ? NULL : &fgcolor,
|
hide_mirc_colors || hide_text_style ? NULL : &fgcolor,
|
||||||
hide_text_style ? NULL : &bgcolor);
|
hide_mirc_colors || hide_text_style ? NULL : &bgcolor);
|
||||||
if (!hide_text_style)
|
if (!hide_mirc_colors || !hide_text_style)
|
||||||
flags |= GUI_PRINT_FLAG_MIRC_COLOR;
|
flags |= GUI_PRINT_FLAG_MIRC_COLOR;
|
||||||
break;
|
break;
|
||||||
case 4:
|
case 4:
|
||||||
@ -1051,6 +1051,7 @@ static void read_settings(void)
|
|||||||
timestamps = settings_get_bool("timestamps");
|
timestamps = settings_get_bool("timestamps");
|
||||||
timestamp_timeout = settings_get_int("timestamp_timeout");
|
timestamp_timeout = settings_get_int("timestamp_timeout");
|
||||||
msgs_timestamps = settings_get_bool("msgs_timestamps");
|
msgs_timestamps = settings_get_bool("msgs_timestamps");
|
||||||
|
hide_mirc_colors = settings_get_bool("hide_mirc_colors");
|
||||||
}
|
}
|
||||||
|
|
||||||
void formats_init(void)
|
void formats_init(void)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user