Bugfix: clicking on 'back' in a new addon installation case

crashed stk.


git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@8609 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk 2011-05-16 13:13:22 +00:00
parent 859a77df0d
commit 6ac6e76f12

@ -118,8 +118,11 @@ GUIEngine::EventPropagation
{
// Cancel a download only if we are installing/upgrading one
// (and not uninstalling an installed one):
if(!m_addon.isInstalled() || m_addon.needsUpdate())
network_http->cancelDownload();
if(m_download_request)
{
assert(m_download_request);
m_download_request->cancel();
}
dismiss();
return GUIEngine::EVENT_BLOCK;
}