Commit dbcd979535fa2017d77a463f2ac1ce93d2e2fad6
1 parent
ece33d6f
Exists in
master
and in
100 other branches
Fix error on the size of the first symbol of a TimeTick draw
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/ParamOutputImpl/Plot/Scatter/XYPlot.cc
... | ... | @@ -620,7 +620,7 @@ void XYPlot::drawTimeTicks(SeriesProperties& pSeries, AMDA::Common::ParameterInd |
620 | 620 | if (nbTotMajor != 0) { |
621 | 621 | drawSymbols( |
622 | 622 | ttProps.getFirstSymbol().getType(), |
623 | - ttProps.getSymbol().getSize(), 1., | |
623 | + ttProps.getFirstSymbol().getSize(), 1., | |
624 | 624 | ttProps.getFirstSymbol().getColor(), |
625 | 625 | 1, majorX, majorY); |
626 | 626 | ... | ... |