mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-04-19 05:13:40 +00:00
attempt to fix --no-gui option for windows
This commit is contained in:
parent
6e07be0af5
commit
c9ffdcd52b
25 changed files with 141 additions and 58 deletions
|
|
@ -341,7 +341,9 @@ void AmplitudeCalDialog::AddPointDialog()
|
|||
|
||||
dev->SendCommandWithoutPayload(requestCommand());
|
||||
|
||||
d->show();
|
||||
if(AppWindow::showGUI()) {
|
||||
d->show();
|
||||
}
|
||||
}
|
||||
|
||||
void AmplitudeCalDialog::AutomaticMeasurementDialog()
|
||||
|
|
@ -415,7 +417,9 @@ void AmplitudeCalDialog::AutomaticMeasurementDialog()
|
|||
SetupNextAutomaticPoint(automatic.isSourceCal);
|
||||
});
|
||||
|
||||
automatic.dialog->show();
|
||||
if(AppWindow::showGUI()) {
|
||||
automatic.dialog->show();
|
||||
}
|
||||
}
|
||||
|
||||
void AmplitudeCalDialog::ReceivedMeasurement(Protocol::SpectrumAnalyzerResult res)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue