From aba0633a789bb497f6df4d23835503ef9fa72139 Mon Sep 17 00:00:00 2001 From: Weslly Date: Wed, 5 Apr 2017 16:35:11 -0300 Subject: [PATCH] Bring HTTP Confirmation window to the front --- src/http/AccessControlDialog.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/http/AccessControlDialog.cpp b/src/http/AccessControlDialog.cpp index 60422be4f..fea47026f 100644 --- a/src/http/AccessControlDialog.cpp +++ b/src/http/AccessControlDialog.cpp @@ -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()));