diff --git a/Software/PC_Application/Traces/tracexyplot.cpp b/Software/PC_Application/Traces/tracexyplot.cpp index f08ccd6..ffb97ef 100644 --- a/Software/PC_Application/Traces/tracexyplot.cpp +++ b/Software/PC_Application/Traces/tracexyplot.cpp @@ -558,10 +558,6 @@ void TraceXYPlot::draw(QPainter &p) // scale to plot coordinates auto p1 = plotValueToPixel(line->getPoints()[j-1], i); auto p2 = plotValueToPixel(line->getPoints()[j], i); - if(!plotRect.contains(p1) && !plotRect.contains(p2)) { - // completely out of frame - continue; - } // draw line p.drawLine(p1, p2); }