Commit 83cbfd9f65780352d519e5ac666bdf44cd745686
1 parent
ac7eebb0
Exists in
master
and in
37 other branches
Update Range Bounds
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/ParamOutputImpl/Plot/InstantPlot/PlotFunction.cc
... | ... | @@ -344,8 +344,8 @@ namespace plot |
344 | 344 | minValue = min_x; |
345 | 345 | } |
346 | 346 | |
347 | - minValue = minValue - abs(minValue) * 0.1; | |
348 | - maxValue = maxValue + abs(maxValue) * 0.1; | |
347 | + minValue = minValue - abs(minValue) * 0.01; | |
348 | + maxValue = maxValue + abs(maxValue) * 0.01; | |
349 | 349 | |
350 | 350 | *minToFill = minValue; |
351 | 351 | *maxToFill = maxValue; | ... | ... |