Рефакт

This commit is contained in:
2025-09-19 10:42:51 +03:00
parent 4eabd95506
commit d93e5e49c9
5 changed files with 23 additions and 16 deletions

View File

@@ -14,9 +14,16 @@ DialogChekerTask::DialogChekerTask(ConnectorToServer* connectorToServer, QString
QHBoxLayout *layout = new QHBoxLayout(this);
layout->addWidget(checkerTask);
this->setWindowTitle(tr("Check Task"));
this->setMinimumSize(1400, 700);
if(type == "fim")
{
this->setMinimumSize(1400, 700);
this->setWindowState(Qt::WindowMaximized);
}
else
{
this->setMinimumSize(400, 200);
}
this->setModal(true);
}