clippy
This commit is contained in:
parent
98aac84e71
commit
8601e1e38f
@ -124,9 +124,9 @@ impl ChartManager {
|
|||||||
|
|
||||||
// Applies `half_step` in order to make the bar graph display properly
|
// Applies `half_step` in order to make the bar graph display properly
|
||||||
if output.0 > 0.0 {
|
if output.0 > 0.0 {
|
||||||
output.0 = output.0 + half_step;
|
output.0 += half_step;
|
||||||
} else {
|
} else {
|
||||||
output.0 = output.0 - half_step;
|
output.0 -= half_step;
|
||||||
}
|
}
|
||||||
|
|
||||||
output
|
output
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user