From 8112e012b6caa4edb695c69499651aa2d8a48cbb Mon Sep 17 00:00:00 2001 From: Jonathan G Rennison Date: Tue, 7 Jul 2020 17:35:26 +0100 Subject: [PATCH] Fix station catchment overlay not being cleared when distant join window closed --- src/station_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/station_gui.cpp b/src/station_gui.cpp index 56910a91c5..0df74d0884 100644 --- a/src/station_gui.cpp +++ b/src/station_gui.cpp @@ -2332,7 +2332,7 @@ struct SelectStationWindow : Window { ~SelectStationWindow() { - if (_settings_client.gui.station_show_coverage) SetViewportCatchmentStation(nullptr, true); + SetViewportCatchmentStation(nullptr, true); _thd.freeze = false; }