mirror of
https://github.com/FelixKratz/SketchyBar
synced 2025-02-16 20:48:26 +00:00
fix default color for graphs (#468)
This commit is contained in:
parent
cee9a83b36
commit
69dd1338c0
1 changed files with 2 additions and 2 deletions
|
@ -9,8 +9,8 @@ void graph_init(struct graph* graph) {
|
|||
graph->overrides_fill_color = false;
|
||||
graph->enabled = true;
|
||||
|
||||
color_init(&graph->line_color, 0xcccccc);
|
||||
color_init(&graph->fill_color, 0xcccccc);
|
||||
color_init(&graph->line_color, 0xffcccccc);
|
||||
color_init(&graph->fill_color, 0xffcccccc);
|
||||
}
|
||||
|
||||
void graph_setup(struct graph* graph, uint32_t width) {
|
||||
|
|
Loading…
Add table
Reference in a new issue