Skip to content

Commit

Permalink
relink iris
Browse files Browse the repository at this point in the history
  • Loading branch information
Ri0n committed May 8, 2024
1 parent a1dda30 commit cfcf764
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion iris
3 changes: 1 addition & 2 deletions src/captchadlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,12 @@ CaptchaDlg::CaptchaDlg(QWidget *parent, const CaptchaChallenge &challenge, PsiAc
setAttribute(Qt::WA_DeleteOnClose);
ui->setupUi(this);

QVBoxLayout *l = new QVBoxLayout;
QVBoxLayout *l = new QVBoxLayout(this);
dataWidget = new XDataWidget(pa->psi(), this, pa->client(), challenge.arbiter());
dataWidget->setForm(challenge.form());
l->addWidget(dataWidget);
l->addStretch();
l->addWidget(ui->buttonBox);
setLayout(l);
}

CaptchaDlg::~CaptchaDlg() { delete ui; }
Expand Down

0 comments on commit cfcf764

Please sign in to comment.