Closed donutAnees closed 4 months ago
In the current latest code of conky, downspeedgraph and upspeedgraph look the same because they're both individually scaled with respect to max value.
This has now been fixed and both of them are scaled on a common axis. I have tested the code, and it does not influence any other graphs.
The changes made include
char speedgraph
struct graph
struct special_node
double maxval
Checklist
Description
Before
In the current latest code of conky, downspeedgraph and upspeedgraph look the same because they're both individually scaled with respect to max value.
After
This has now been fixed and both of them are scaled on a common axis. I have tested the code, and it does not influence any other graphs.
The changes made include
char speedgraph
flag to thestruct graph
andstruct special_node
.double maxval
to keep track of the current max value across the two graphs.char speedgraph
to scan_graph method.