From 7f5228d9348f8e2876c1348bac7958b5d617eef2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20K=C3=A4berich?= Date: Mon, 12 Dec 2022 13:58:59 +0100 Subject: [PATCH] Add missing break --- Software/PC_Application/LibreVNA-GUI/Traces/tracewidget.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Software/PC_Application/LibreVNA-GUI/Traces/tracewidget.cpp b/Software/PC_Application/LibreVNA-GUI/Traces/tracewidget.cpp index e5f680f..7ad90cc 100644 --- a/Software/PC_Application/LibreVNA-GUI/Traces/tracewidget.cpp +++ b/Software/PC_Application/LibreVNA-GUI/Traces/tracewidget.cpp @@ -142,6 +142,7 @@ void TraceWidget::on_view_clicked(const QModelIndex &index) break; case TraceModel::ColIndexDeembedding: model.toggleDeembedding(index.row()); + break; case TraceModel::ColIndexMath: model.toggleMath(index.row()); break;