From b167fe3c931aee321ad0399d607f25bd5df9985f Mon Sep 17 00:00:00 2001 From: DreamMaoMao <2523610504@qq.com> Date: Sun, 1 Jun 2025 21:15:51 +0800 Subject: [PATCH] fix: monitor need set -1 init value --- src/config/parse_config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/parse_config.h b/src/config/parse_config.h index 9cdd114..917df96 100644 --- a/src/config/parse_config.h +++ b/src/config/parse_config.h @@ -1097,7 +1097,7 @@ void parse_config_line(Config *config, const char *line) { rule->isoverlay = 0; rule->isterm = 0; rule->noswallow = 0; - rule->monitor = 0; + rule->monitor = -1; rule->offsetx = 0; rule->offsety = 0; rule->nofadein = 0;