From e4aedc9e83d3d49fe8e954fd1a2aa0cdc09f96aa Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Tue, 22 Feb 2022 20:42:15 -0800 Subject: [PATCH] Stop connecting to dead signal. This was causing all further signals (which was just the flight selection) to not register. --- resources/ui/map/map.js | 1 - 1 file changed, 1 deletion(-) diff --git a/resources/ui/map/map.js b/resources/ui/map/map.js index ec8f1f2c..28984dd5 100644 --- a/resources/ui/map/map.js +++ b/resources/ui/map/map.js @@ -383,7 +383,6 @@ new QWebChannel(qt.webChannelTransport, function (channel) { game.supplyRoutesChanged.connect(drawSupplyRoutes); game.frontLinesChanged.connect(drawFrontLines); game.flightsChanged.connect(drawAircraft); - game.mapZonesChanged.connect(drawMapZones); game.selectedFlightChanged.connect(updateSelectedFlight); });