mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-01-06 00:30:10 +01:00
update marker when restrict frequencies are changed
This commit is contained in:
parent
cda27314b7
commit
796a8cb3f9
|
|
@ -1532,6 +1532,7 @@ QWidget *Marker::getRestrictEditor()
|
|||
max->setValueQuiet(maxPosition);
|
||||
}
|
||||
constrainPosition();
|
||||
update();
|
||||
});
|
||||
connect(max, &SIUnitEdit::valueChanged, this, [=](){
|
||||
maxPosition = max->value();
|
||||
|
|
@ -1540,6 +1541,7 @@ QWidget *Marker::getRestrictEditor()
|
|||
min->setValueQuiet(minPosition);
|
||||
}
|
||||
constrainPosition();
|
||||
update();
|
||||
});
|
||||
|
||||
w->setLayout(layout);
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -357,6 +357,7 @@ FORMS += \
|
|||
../LibreVNA-GUI/Traces/Math/timegatedialog.ui \
|
||||
../LibreVNA-GUI/Traces/Math/timegateexplanationwidget.ui \
|
||||
../LibreVNA-GUI/Traces/XYPlotConstantLineEditDialog.ui \
|
||||
../LibreVNA-GUI/Traces/eyediagrameditdialog.ui \
|
||||
../LibreVNA-GUI/Traces/polarchartdialog.ui \
|
||||
../LibreVNA-GUI/Traces/smithchartdialog.ui \
|
||||
../LibreVNA-GUI/Traces/tracecsvexport.ui \
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
@echo off
|
||||
SetLocal EnableDelayedExpansion
|
||||
(set PATH=C:\Qt\5.15.1\mingw81_64\bin;!PATH!)
|
||||
(set PATH=C:\Qt\5.15.2\mingw81_64\bin;!PATH!)
|
||||
if defined QT_PLUGIN_PATH (
|
||||
set QT_PLUGIN_PATH=C:\Qt\5.15.1\mingw81_64\plugins;!QT_PLUGIN_PATH!
|
||||
set QT_PLUGIN_PATH=C:\Qt\5.15.2\mingw81_64\plugins;!QT_PLUGIN_PATH!
|
||||
) else (
|
||||
set QT_PLUGIN_PATH=C:\Qt\5.15.1\mingw81_64\plugins
|
||||
set QT_PLUGIN_PATH=C:\Qt\5.15.2\mingw81_64\plugins
|
||||
)
|
||||
%*
|
||||
EndLocal
|
||||
|
|
|
|||
Loading…
Reference in a new issue