I have an GUI form application, develop on open suse and using QSS.
I put all stylesheet code into only one .qss file called: main.qss and load it into qApp.
Qt Code:
  1. qApp->setStyleSheet(s);
To copy to clipboard, switch view to plain text mode 
Problem is: perfomance really bad.
If I don't use stylesheet, everything goes fine but after I setStyleSheet, application run very slow.
How can I fix this ?