修复下载按钮状态未重置

This commit is contained in:
柚子 2022-12-12 15:49:08 +08:00
parent e2c9f1100d
commit bfc68fbf6f

View File

@ -33,6 +33,7 @@ void AppIntoPage::clear()
ui->author->clear(); ui->author->clear();
ui->label_2->clear(); ui->label_2->clear();
ui->downloadButton->hide(); ui->downloadButton->hide();
ui->downloadButton->setEnabled(true);
ui->pushButton_3->hide(); ui->pushButton_3->hide();
int n=ui->listWidget->count(); int n=ui->listWidget->count();
for(int i=0;i<n;i++) for(int i=0;i<n;i++)
@ -128,12 +129,14 @@ void AppIntoPage::openUrl(QUrl url)
if(isUpdated) if(isUpdated)
{ {
ui->downloadButton->setText(tr("Reinstall")); ui->downloadButton->setText(tr("Reinstall"));
ui->downloadButton->setEnabled(true);
ui->downloadButton->show(); ui->downloadButton->show();
ui->pushButton_3->show(); ui->pushButton_3->show();
} }
else else
{ {
ui->downloadButton->setText(tr("Upgrade")); ui->downloadButton->setText(tr("Upgrade"));
ui->downloadButton->setEnabled(true);
ui->downloadButton->show(); ui->downloadButton->show();
ui->pushButton_3->show(); ui->pushButton_3->show();
} }