disable some plots that are annoying me

This commit is contained in:
Brendan Haines 2025-03-08 23:05:35 -07:00
parent e78cf5595a
commit 97497e640e

View File

@ -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()