My tweaks

Use a tree view instead of table view, remove toggle button (janky)

Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
This commit is contained in:
TheKodeToad 2025-11-23 20:08:55 +00:00 committed by Octol1ttle
parent e6d7e5cdae
commit 4bc72ccca4
No known key found for this signature in database
GPG key ID: B77C34313AEE1FFF
4 changed files with 27 additions and 50 deletions

View file

@ -167,10 +167,8 @@ void NetJob::emitFailed(QString reason)
auto failed = getFailedActions();
auto dialog = NetworkJobFailedDialog(objectName(), m_try, m_done.size(), failed.size(), nullptr);
int i = 0;
for (const auto& request : failed) {
dialog.addFailedRequest(i, request->url(), request->errorString());
++i;
dialog.addFailedRequest(request->url(), request->errorString());
}
if (dialog.exec() == QDialog::Accepted) {