Bring HTTP Confirmation window to the front

This commit is contained in:
Weslly 2017-04-05 16:35:11 -03:00 committed by Jonathan White
parent e684e230a6
commit aba0633a78

View File

@ -19,6 +19,8 @@ AccessControlDialog::AccessControlDialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::AccessControlDialog())
{
this->setWindowFlags(windowFlags() | Qt::WindowStaysOnTopHint);
ui->setupUi(this);
connect(ui->allowButton, SIGNAL(clicked()), this, SLOT(accept()));
connect(ui->denyButton, SIGNAL(clicked()), this, SLOT(reject()));