Disable conflict check by default, as it yields a lot of false positives and doesn't provide much value. See #177

This commit is contained in:
Federico Terzi 2020-03-10 20:47:31 +01:00
parent 9bae918f98
commit 5ad14acf5c

View File

@ -47,7 +47,7 @@ fn default_filter_title() -> String{ "".to_owned() }
fn default_filter_class() -> String{ "".to_owned() }
fn default_filter_exec() -> String{ "".to_owned() }
fn default_log_level() -> i32 { 0 }
fn default_conflict_check() -> bool{ true }
fn default_conflict_check() -> bool{ false }
fn default_ipc_server_port() -> i32 { 34982 }
fn default_use_system_agent() -> bool { true }
fn default_config_caching_interval() -> i32 { 800 }