Skip to content

Commit

Permalink
Added dialog confirmation when user ask to delete a not yet started d…
Browse files Browse the repository at this point in the history
…ownload
  • Loading branch information
ansani committed Sep 27, 2023
1 parent 9bf4118 commit d61ff53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shareaza/WndDownloads.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,7 @@ void CDownloadsWnd::OnDownloadsClearIncomplete()
pList.RemoveHead();
continue;
}
else if ( ! pDownload1->IsStarted() )
else if ( false && ! pDownload1->IsStarted() )
{
pList.RemoveHead();
pDownload1->Remove();
Expand Down

0 comments on commit d61ff53

Please sign in to comment.