diff options
Diffstat (limited to 'gr-qtgui/lib/DisplayPlot.cc')
-rw-r--r-- | gr-qtgui/lib/DisplayPlot.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gr-qtgui/lib/DisplayPlot.cc b/gr-qtgui/lib/DisplayPlot.cc index 6f1f106f25..dcf5461d25 100644 --- a/gr-qtgui/lib/DisplayPlot.cc +++ b/gr-qtgui/lib/DisplayPlot.cc @@ -268,7 +268,7 @@ DisplayPlot::setLineWidth(int which, int width) QPen pen(d_plot_curve[which]->pen()); pen.setWidth(width); d_plot_curve[which]->setPen(pen); - + // Scale the marker size proportionally #if QWT_VERSION < 0x060000 QwtSymbol sym = (QwtSymbol)d_plot_curve[which]->symbol(); @@ -361,12 +361,12 @@ DisplayPlot::setMarkerAlpha(int which, int alpha) // Get the pen color QPen pen(d_plot_curve[which]->pen()); QColor color = pen.color(); - + // Set new alpha and update pen color.setAlpha(alpha); pen.setColor(color); d_plot_curve[which]->setPen(pen); - + // And set the new color for the markers #if QWT_VERSION < 0x060000 QwtSymbol sym = (QwtSymbol)d_plot_curve[which]->symbol(); @@ -396,7 +396,7 @@ DisplayPlot::getMarkerAlpha(int which) const void DisplayPlot::setStop(bool on) { - d_stop = on; + d_stop = on; } void |