From 2a467559c36fee3a3feccbdfd4962ec2b5d35a40 Mon Sep 17 00:00:00 2001 From: GithubAnon0000 <160563432+GithubAnon0000@users.noreply.github.com> Date: Mon, 29 Sep 2025 22:46:07 +0200 Subject: [PATCH] FIX: Add correct initial value to solve bug --- rslib/src/config/schema11.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rslib/src/config/schema11.rs b/rslib/src/config/schema11.rs index fba43b232..c81f398ea 100644 --- a/rslib/src/config/schema11.rs +++ b/rslib/src/config/schema11.rs @@ -25,7 +25,7 @@ pub(crate) fn schema11_config_as_string(creation_offset: Option) -> String "schedVer": 2, "creationOffset": creation_offset, "sched2021": true, - "hideColor": true, + "hideColor": false, }); serde_json::to_string(&obj).unwrap() }