File diff r26004:403650007dd8 → r26005:fa9fad1bd9d6
src/network/network.cpp
Show inline comments
 
@@ -635,6 +635,7 @@ public:
 
	{
 
		NetworkGameList *item = NetworkGameListAddItem(connection_string);
 
		item->status = NGLS_OFFLINE;
 
		item->refreshing = false;
 

	
 
		UpdateNetworkGameWindow();
 
	}
 
@@ -653,6 +654,10 @@ void NetworkQueryServer(const std::strin
 
{
 
	if (!_network_available) return;
 

	
 
	/* Mark the entry as refreshing, so the GUI can show the refresh is pending. */
 
	NetworkGameList *item = NetworkGameListAddItem(connection_string);
 
	item->refreshing = true;
 

	
 
	new TCPQueryConnecter(connection_string);
 
}