Make help windows non modal

This commit is contained in:
2025-03-24 22:09:18 +01:00
parent 4488c2e6af
commit 7fc6c64fd7
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -32,6 +32,8 @@ HelpDialog::HelpDialog(QWidget *parent) : QDialog(parent)
{
setWindowTitle(tr("Help"));
resize(1000, 600);
setModal(false);
setAttribute(Qt::WA_DeleteOnClose, true);
QVBoxLayout *layout = new QVBoxLayout(this);
QTextEdit *helpText = new QTextEdit(this);