(svn r17245) -Fix [FS#3137] (r17015): you could, via unselect all, also unselect already installed content; it would not uninstall it though
This commit is contained in:
		| @@ -612,7 +612,7 @@ void ClientNetworkContentSocketHandler::UnselectAll() | ||||
| { | ||||
| 	for (ContentIterator iter = this->infos.Begin(); iter != this->infos.End(); iter++) { | ||||
| 		ContentInfo *ci = *iter; | ||||
| 		if (ci->IsSelected()) ci->state = ContentInfo::UNSELECTED; | ||||
| 		if (ci->IsSelected() && ci->state != ContentInfo::ALREADY_HERE) ci->state = ContentInfo::UNSELECTED; | ||||
| 	} | ||||
| } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 rubidium
					rubidium