where is your sample code inside your application? Maybe you can call update() before executing. But normally a code like that works for me:without "flashing".Qt Code:
void Foo::showDlg() { if(!m_dlg) m_dlg = new SubclassedDlg(this); m_dlg->setAllValuesToTheirDefault(); m_dlg->exec(); }To copy to clipboard, switch view to plain text mode
Bookmarks