This commit is contained in:
jkriege2 2022-08-25 15:30:39 +02:00
parent 03031e3762
commit 69adb3adfb

View File

@ -1,7 +1,7 @@
/* /*
Copyright (c) 2008-2022 Jan W. Krieger (<jan@jkrieger.de>) Copyright (c) 2008-2022 Jan W. Krieger (<jan@jkrieger.de>)
This software is free software: you can redistribute it and/or modify This software is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License (LGPL) as published by it under the terms of the GNU Lesser General Public License (LGPL) as published by
@ -133,10 +133,10 @@ void JKQTPXYLineGraph::draw(JKQTPEnhancedPainter& painter) {
if (linesP.size()>0) { if (linesP.size()>0) {
if (isHighlighted()) { if (isHighlighted()) {
painter.setPen(penSelection); painter.setPen(penSelection);
painter.drawPolyline(linesP.data(), linesP.size()); painter.drawPolyline(linesP);
} }
painter.setPen(p); painter.setPen(p);
painter.drawPolyline(linesP.data(), linesP.size()); painter.drawPolyline(linesP);
} }
} }
} }