diff --git a/V203/usb/scope/software/mainwindow.cpp b/V203/usb/scope/software/mainwindow.cpp index 06a3a8e..27f1a77 100644 --- a/V203/usb/scope/software/mainwindow.cpp +++ b/V203/usb/scope/software/mainwindow.cpp @@ -79,6 +79,8 @@ void MainWindow::TriggerValues (int n) { void MainWindow::SendTrigerMode (int n) { if (n == TRIGER_MODE_SINGLE) ui->buttonStart->setEnabled(true); else ui->buttonStart->setEnabled(false); + if (n == TRIGER_MODE_AUTO) ui->comboTimeRange->setEnabled(true); // BUG - jinak dojde při přepínání k chybě + else ui->comboTimeRange->setEnabled(false); // TODO firmware.SendTrigerMode(n); } void MainWindow::SendTrigerEdge (int n) {