1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2025-01-16 04:02:15 +00:00

Made upspeedgraph and downspeed graph scale on a common axis

This commit is contained in:
donutAnees 2024-07-21 03:48:29 +05:30 committed by Brenden Matthews
parent 82bfeba9bf
commit ed6d18827d

View File

@ -54,7 +54,7 @@ struct graph {
static std::pair<struct graph, bool> test_parse(const char *s) { static std::pair<struct graph, bool> test_parse(const char *s) {
struct text_object obj; struct text_object obj;
bool result = scan_graph(&obj, s, default_scale); bool result = scan_graph(&obj, s, default_scale,FALSE);
auto g = static_cast<struct graph *>(obj.special_data); auto g = static_cast<struct graph *>(obj.special_data);
struct graph graph = *g; struct graph graph = *g;
free(g); free(g);