1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-26 21:06:38 +02:00

Min value for "irc_lag_min_show" is now 0

This commit is contained in:
Sebastien Helleu
2005-01-23 17:59:18 +00:00
parent f877e8be51
commit 07686bf69b
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -487,7 +487,7 @@ t_config_option weechat_options_irc[] =
NULL, NULL, &cfg_irc_lag_check, NULL, config_change_noop },
{ "irc_lag_min_show", N_("minimum lag to show"),
N_("minimum lag to show (in seconds)"),
OPTION_TYPE_INT, 1, INT_MAX, 1,
OPTION_TYPE_INT, 0, INT_MAX, 1,
NULL, NULL, &cfg_irc_lag_min_show, NULL, config_change_noop },
{ "irc_lag_disconnect", N_("disconnect after important lag"),
N_("disconnect after important lag (in minutes, 0 = never disconnect)"),
+1 -1
View File
@@ -487,7 +487,7 @@ t_config_option weechat_options_irc[] =
NULL, NULL, &cfg_irc_lag_check, NULL, config_change_noop },
{ "irc_lag_min_show", N_("minimum lag to show"),
N_("minimum lag to show (in seconds)"),
OPTION_TYPE_INT, 1, INT_MAX, 1,
OPTION_TYPE_INT, 0, INT_MAX, 1,
NULL, NULL, &cfg_irc_lag_min_show, NULL, config_change_noop },
{ "irc_lag_disconnect", N_("disconnect after important lag"),
N_("disconnect after important lag (in minutes, 0 = never disconnect)"),