Accept combo box selection as completed state in setup page

Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
This commit is contained in:
Claudio Cambra 2024-09-19 15:07:15 +08:00 коммит произвёл Matthieu Gallien
Родитель 1decedd56f
Коммит 6358f00263
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -179,7 +179,7 @@ void OwncloudSetupPage::slotUrlEditFinished()
bool OwncloudSetupPage::isComplete() const
{
return !_ui.leUrl->text().isEmpty() && !_checking;
return (!_ui.leUrl->text().isEmpty() || !_ui.comboBox->currentData().toString().isEmpty()) && !_checking;
}
void OwncloudSetupPage::initializePage()