Skip to content

Commit

Permalink
Merge pull request #135 from ansani/128-there-is-no-confirmation-when…
Browse files Browse the repository at this point in the history
…-cancelling-non-started-downloads

Added dialog confirmation when user ask to delete a not yet started download
  • Loading branch information
ansani committed Sep 27, 2023
2 parents 9bf4118 + d61ff53 commit 69b0fbe
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 69b0fbe

Please sign in to comment.