From c296111bcc0b64e61265a6e03b0659c8585f24a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20K=C3=A4berich?= Date: Sun, 6 Apr 2025 21:22:42 +0200 Subject: [PATCH] disable min/max/div settings in XY plot dialog when axis set to disabled --- .../PC_Application/LibreVNA-GUI/Traces/xyplotaxisdialog.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Software/PC_Application/LibreVNA-GUI/Traces/xyplotaxisdialog.cpp b/Software/PC_Application/LibreVNA-GUI/Traces/xyplotaxisdialog.cpp index f039104..8c2e544 100644 --- a/Software/PC_Application/LibreVNA-GUI/Traces/xyplotaxisdialog.cpp +++ b/Software/PC_Application/LibreVNA-GUI/Traces/xyplotaxisdialog.cpp @@ -56,6 +56,10 @@ XYplotAxisDialog::XYplotAxisDialog(TraceXYPlot *plot) : log->setEnabled(false); linear->setEnabled(false); CBauto->setEnabled(false); + min->setEnabled(false); + max->setEnabled(false); + divs->setEnabled(false); + autoDivs->setEnabled(false); } else { // axis enabled log->setEnabled(true);