From 9730ae581b2ab1d6f15aca54ead8e38a8dda5d2d Mon Sep 17 00:00:00 2001 From: AdenKoperczak Date: Sun, 6 Oct 2024 12:12:27 -0400 Subject: [PATCH] fix missed update of comment after copy/paste --- scwx-qt/source/scwx/qt/map/map_widget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scwx-qt/source/scwx/qt/map/map_widget.cpp b/scwx-qt/source/scwx/qt/map/map_widget.cpp index 098a6378..da5bef38 100644 --- a/scwx-qt/source/scwx/qt/map/map_widget.cpp +++ b/scwx-qt/source/scwx/qt/map/map_widget.cpp @@ -1235,7 +1235,7 @@ void MapWidgetImpl::AddLayer(types::LayerType type, { widget_->RadarSiteRequested(id); }); break; - // Create the radar site layer + // Create the location marker layer case types::InformationLayer::Markers: markerLayer_ = std::make_shared(context_); AddLayer(layerName, markerLayer_, before);