yes, I am using this under windows.
yes, I am using this under windows.
Mithin
www.mithin.in
And if you rem the window modality line then everything works as expected? It could be some kind of bug... Why don't you use a dialog instead of a widget? If you already have a widget, you can always wrap it into a dialog:
Qt Code:
QDialog dlg; MyWidget *myWidget = new MyWidget; l->addWidget(myWidget); dlg.setLayout(l); dlg.exec();To copy to clipboard, switch view to plain text mode
Bookmarks