Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-58602

QGraphicsDropShadowEffect causes UpdateLayeredWindowIndirect failed

    XMLWordPrintable

Details

    • Bug
    • Resolution: Unresolved
    • P2: Important
    • None
    • 5.6.0, 5.9.3, 6.5, 6.6
    • None
    • Windows 8.0

    Description

      Application output shows error messages on show/hide the dialog:
      UpdateLayeredWindowIndirect failed for ptDst=(749, 373), size=(82x35), dirty=(92x45 -5, -5) (incorrect parameter)

      Dialog has FramelessWindowHint, WA_TranslucentBackground attributes and use QGraphicsDropShadowEffect.

      Example to reproduce the bug:

      #include <QtWidgets>
      #include <QApplication>
      
      class Dialog : public QDialog{
      public:
          Dialog( QWidget * parent = 0, Qt::WindowFlags f = Qt::FramelessWindowHint | Qt::Window )
              : QDialog( parent, f)
          {
              setAttribute(Qt::WA_TranslucentBackground, true);
              auto *layout  = new QHBoxLayout(this);
      
              auto *label = new QLabel("This is dialog", this);
              layout->addWidget(label);
              auto *bodyShadow = new QGraphicsDropShadowEffect(this);
              bodyShadow->setBlurRadius(5);
              bodyShadow->setOffset(QPointF(0,0));
              setGraphicsEffect(bodyShadow);
          }
      };
      
      int main(int argc, char** argv)
      {
          QApplication a(argc, argv);
          Dialog dialog;
          return dialog.exec();
      }
      

      Attachments

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

        Activity

          People

            Unassigned Unassigned
            Slava Yartsev Yartsev Viacheslav
            Votes:
            4 Vote for this issue
            Watchers:
            9 Start watching this issue

            Dates

              Created:
              Updated:

              Gerrit Reviews

                There are no open Gerrit changes