From 97497e640ec0baa9733d6e950df0a8e855bb5ecd Mon Sep 17 00:00:00 2001 From: Brendan Haines Date: Sat, 8 Mar 2025 23:05:35 -0700 Subject: [PATCH] disable some plots that are annoying me --- charon_vna/gui.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/charon_vna/gui.py b/charon_vna/gui.py index 3d1665c..31f265c 100644 --- a/charon_vna/gui.py +++ b/charon_vna/gui.py @@ -112,7 +112,12 @@ class MainWindow(QMainWindow): plot_layout = QVBoxLayout() # TODO: handle plots properly self.plots = [] - for type_ in ["logmag", "phase", "vswr", "smith"]: + for type_ in [ + "logmag", + "phase", + # "vswr", + # "smith", + ]: self.plots.append(PlotWidget(type_=type_)) plot_layout.addWidget(self.plots[-1]) plot_widget = QWidget()