config: ensure config->colorscheme is set. Closes T8855

This commit is contained in:
Boris Faure 2020-11-14 22:16:35 +01:00
parent c2cd0035e4
commit 5b3cd9149c
Signed by: borisfaure
GPG Key ID: 35C0410516166BE8
1 changed files with 1 additions and 0 deletions

View File

@ -605,6 +605,7 @@ config_new(void)
config->shine = 255; config->shine = 255;
config->hide_cursor = 5.0; config->hide_cursor = 5.0;
config->group_all = EINA_FALSE; config->group_all = EINA_FALSE;
config_compute_color_scheme(config);
} }
return config; return config;
} }