summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2005-01-23 17:59:18 +0000
committerSebastien Helleu <flashcode@flashtux.org>2005-01-23 17:59:18 +0000
commit07686bf69bce9eeddd279a3cbc485b484655aa84 (patch)
tree71b5bccedb0055e2ecaac8ebf9847115e103607f
parentf877e8be5143e19824718a97b8444bf84e9cb3ea (diff)
downloadweechat-07686bf69bce9eeddd279a3cbc485b484655aa84.zip
Min value for "irc_lag_min_show" is now 0
-rw-r--r--src/common/weeconfig.c2
-rw-r--r--weechat/src/common/weeconfig.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/common/weeconfig.c b/src/common/weeconfig.c
index df1aa67e6..41ec615bb 100644
--- a/src/common/weeconfig.c
+++ b/src/common/weeconfig.c
@@ -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)"),
diff --git a/weechat/src/common/weeconfig.c b/weechat/src/common/weeconfig.c
index df1aa67e6..41ec615bb 100644
--- a/weechat/src/common/weeconfig.c
+++ b/weechat/src/common/weeconfig.c
@@ -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)"),