Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.