mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-07-02 03:16:58 +03:00
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:
parent
e6d7e5cdae
commit
4bc72ccca4
4 changed files with 27 additions and 50 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue