QFancyPushButton(QWidget *parent, QString text):QPushButton(parent)
{
QGraphicsBlurEffect meffect = new QGraphicsBlurEffect();
setGraphicsEffect(meffect);
setText(text);
graphicsEffect()->setEnabled(false);
connect(meffect, SIGNAL(enabledChanged(bool)), this, SLOT(repaint()));
connect(meffect, SIGNAL(enabledChanged(bool)), this, SLOT(debug()));
qDebug() << "Created a button with" << effect->objectName();
}
This effect is enabled and disabled by SLOTS and the debug() connection proves the call. But no change on the surface. I think it should be enough to update the drawing of the effect instead of the whole button or window. Works perfect with the QGraphicsColorizeEffect.
What am I missing?