UI: RulesWindow::showRulesDialog: Show as modal

This commit is contained in:
Nodir Temirkhodjaev 2024-11-07 13:31:30 +05:00
parent 49c5502fd7
commit 0fd3ad2638

View File

@ -396,6 +396,8 @@ RulesWindow *RulesWindow::showRulesDialog(Rule::RuleType ruleType, QWidget *pare
auto w = new RulesWindow(ruleType, parent, Qt::Dialog); auto w = new RulesWindow(ruleType, parent, Qt::Dialog);
w->setAttribute(Qt::WA_DeleteOnClose); w->setAttribute(Qt::WA_DeleteOnClose);
w->setWindowModality(Qt::WindowModal);
w->showWindow(); w->showWindow();
return w; return w;