From 6ec55801804098178d7091e6e4cc08636081770f Mon Sep 17 00:00:00 2001 From: rubidium Date: Tue, 8 Feb 2011 20:51:30 +0000 Subject: [PATCH] (svn r22029) -Fix [FS#4482]: the server list got not resorted/redrawn after NewGRFs were downloaded --- src/network/network_gamelist.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/network/network_gamelist.cpp b/src/network/network_gamelist.cpp index 814a5ed49d..3e6db1317f 100644 --- a/src/network/network_gamelist.cpp +++ b/src/network/network_gamelist.cpp @@ -16,6 +16,7 @@ #include "../stdafx.h" #include "../debug.h" +#include "../window_func.h" #include "../thread/thread.h" #include "network_internal.h" #include "network_udp.h" @@ -195,6 +196,8 @@ void NetworkAfterNewGRFScan() } } } + + InvalidateWindowClassesData(WC_NETWORK_WINDOW); } #endif /* ENABLE_NETWORK */