forked from qt-creator/qt-creator
Android: fix OpenSSL download minor wrong condition
Silent bool should be reversed. Change-Id: I2b8506eb7af95dc51fab8e911c548dac766ce090 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
@@ -772,7 +772,7 @@ void AndroidSettingsWidget::downloadOpenSslRepo(const bool silent)
|
||||
|
||||
auto openSslSummaryWidget = static_cast<SummaryWidget *>(m_ui->openSslDetailsWidget->widget());
|
||||
if (openSslSummaryWidget->allRowsOk()) {
|
||||
if (silent) {
|
||||
if (!silent) {
|
||||
QMessageBox::information(this, openSslCloneTitle,
|
||||
tr("OpenSSL prebuilt libraries repository is already configured."));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user