From a5919ac917a8eec74f51fd242708594deb7c8f68 Mon Sep 17 00:00:00 2001 From: Dan Paulat Date: Mon, 2 Dec 2024 22:34:42 -0600 Subject: [PATCH] The last smoothed radial needs the first radial to render --- scwx-qt/source/scwx/qt/view/level2_product_view.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scwx-qt/source/scwx/qt/view/level2_product_view.cpp b/scwx-qt/source/scwx/qt/view/level2_product_view.cpp index 97e0ba91..4359a78c 100644 --- a/scwx-qt/source/scwx/qt/view/level2_product_view.cpp +++ b/scwx-qt/source/scwx/qt/view/level2_product_view.cpp @@ -707,7 +707,7 @@ void Level2ProductView::ComputeSweep() auto nextIt = std::next(it); if (nextIt == radarData->cend()) { - continue; + nextIt = radarData->cbegin(); } const auto& nextRadialPair = *(nextIt);