Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Whenever i invoke the dialog, main application being hidden, the dialog appears at corner.
You can simply set geometry for your Dialog to the center of the screen...
For example:
@ Dialog::Dialog(QWidget *parent) : QDialog(parent) { const QRect screen = QApplication::desktop()->screenGeometry(); this->move( screen.center() - this->rect().center() ); } @