QDialog can't show after setting 'setWindowFlags(Qt::CustomizeWindowHint | Qt::Dialog)'
Solved
General and Desktop
-
like the title
-
like the title
@chris_rookie You're deleting all other flags except these two.
setWindowFlags(windowFlags() | Qt::CustomizeWindowHint | Qt::Dialog)
-
@chris_rookie You're deleting all other flags except these two.
setWindowFlags(windowFlags() | Qt::CustomizeWindowHint | Qt::Dialog)
@jsulm
Thank you. It works.