Hi,

I am using 4.6.2 on linux, In my widget I have few pushbuttons.
Now if i set blue effect by setting following.

Qt Code:
  1. ui->pushbutton_1->setGraphicsEffect(blur);
  2. ui->pushbutton_2->setGraphicsEffect(blur);
  3. ui->pushbutton_3->setGraphicsEffect(blur);
  4. ui->pushbutton_4->setGraphicsEffect(blur);
  5. ui->pushbutton_5->setGraphicsEffect(blur);
  6.  
  7. it will show blur effect only on last pushbutton i.e. pushbutton_5 .
  8.  
  9. now if I do,
  10. ui->pushbutton_1->setGraphicsEffect(blur);
  11. ui->pushbutton_4->setGraphicsEffect(blur);
  12. ui->pushbutton_5->setGraphicsEffect(blur);
  13. ui->pushbutton_2->setGraphicsEffect(blur);
  14. ui->pushbutton_3->setGraphicsEffect(blur);
  15.  
  16. it will show blur effect only on pushbutton_3
To copy to clipboard, switch view to plain text mode 

so every time it will show blur effect on last widget only.

Is there any way to show this blur effect on several widget(pushbuttons in my case) simultaneously?