Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable the resume button when selecting more downloads #130

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions shareaza/WndDownloads.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -691,8 +691,14 @@ void CDownloadsWnd::OnUpdateDownloadsResume(CCmdUI* pCmdUI)
{
Prepare();
if ( CCoolBarItem* pcCmdUI = CCoolBarItem::FromCmdUI( pCmdUI ) )
pcCmdUI->Show( m_bSelPaused || ( m_bSelDownload && ! m_bSelTrying && ! m_bSelCompleted ) );
pCmdUI->Enable( m_bSelPaused || ( m_bSelDownload && ! m_bSelTrying && ! m_bSelCompleted ) );
pcCmdUI->Show( m_bSelPaused
|| ( m_bSelDownload && ! m_bSelTrying && ! m_bSelCompleted )
|| ( ( m_nSelectedDownloads > 1 ) && (m_bSelDownload && !m_bSelCompleted) )
);
pCmdUI->Enable( m_bSelPaused
|| ( m_bSelDownload && ! m_bSelTrying && ! m_bSelCompleted )
|| ((m_nSelectedDownloads > 1) && (m_bSelDownload && !m_bSelCompleted))
);
}

void CDownloadsWnd::OnDownloadsResume()
Expand All @@ -703,9 +709,13 @@ void CDownloadsWnd::OnDownloadsResume()
{
CDownload* pDownload = Downloads.GetNext( pos );

if ( pDownload->m_bSelected )
// We must checkexplicitily if the download is Trying (as we ignore the setting in group selection)
if ( pDownload->m_bSelected && !pDownload->IsTrying() )
{
pDownload->Resume();
}
else if (pDownload->IsTrying()) {
theApp.Message(MSG_INFO, _T("Cannot resume an already searching download"));
}
}

Expand Down