1
0
mirror of https://codeberg.org/vyivel/dulcepan/ synced 2025-03-12 18:59:15 +02:00

config: fix default selected color

This commit is contained in:
Kirill Primak 2024-06-19 19:02:00 +03:00
parent 46d222be08
commit 9de568024b

View File

@ -79,7 +79,7 @@ void dp_config_load(struct dp_config *config, const char *user_path) {
.quick_select = false,
};
bytes_to_color((uint32_t[]){0xff, 0xff, 0xff, 0x40}, &config->unselected_color);
bytes_to_color((uint32_t[]){0x00, 0x00, 0x00, 0xff}, &config->selected_color);
bytes_to_color((uint32_t[]){0x00, 0x00, 0x00, 0x00}, &config->selected_color);
bytes_to_color((uint32_t[]){0xff, 0xff, 0xff, 0xff}, &config->border_color);
if (user_path != NULL) {