diff --git a/ApplicationCode/UserInterface/RiuQwtPlotTools.cpp b/ApplicationCode/UserInterface/RiuQwtPlotTools.cpp index 7135ada2d0..e3a333901f 100644 --- a/ApplicationCode/UserInterface/RiuQwtPlotTools.cpp +++ b/ApplicationCode/UserInterface/RiuQwtPlotTools.cpp @@ -27,7 +27,6 @@ #include "qwt_plot_layout.h" #include "qwt_scale_widget.h" -#include #include #include @@ -49,14 +48,7 @@ void RiuQwtPlotTools::setCommonPlotBehaviour( QwtPlot* plot ) QFrame* canvasFrame = dynamic_cast( plot->canvas() ); canvasFrame->setFrameShape( QFrame::Box ); - QGraphicsDropShadowEffect* dropShadowEffect = new QGraphicsDropShadowEffect( plot->canvas() ); - dropShadowEffect->setOffset( 1.0, 1.0 ); - dropShadowEffect->setBlurRadius( 3.0 ); - dropShadowEffect->setColor( QColor( 60, 60, 60, 60 ) ); - plot->canvas()->setGraphicsEffect( dropShadowEffect ); - // Grid - QwtPlotGrid* grid = new QwtPlotGrid; grid->attach( plot ); QPen gridPen( Qt::SolidLine );