Skip to content

Commit

Permalink
Chart space remove drop shadow
Browse files Browse the repository at this point in the history
.. even with opengl the performance is terrible.
  • Loading branch information
liversedge committed Aug 29, 2020
1 parent c3f7cf1 commit 9e4fe43
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Gui/ChartSpace.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,14 @@ class ChartSpaceItem : public QGraphicsWidget
type = 0;
delcounter=0;

#if 0
effect = new QGraphicsDropShadowEffect();
effect->setXOffset(6);
effect->setYOffset(6);
effect->setColor(QColor(127,127,127,64));
effect->setBlurRadius(10);
this->setGraphicsEffect(effect);
#endif

// watch geom changes
connect(this, SIGNAL(geometryChanged()), SLOT(geometryChanged()));
Expand Down

0 comments on commit 9e4fe43

Please sign in to comment.