Skip to content
Snippets Groups Projects
Commit 6819374f authored by ucart's avatar ucart
Browse files

Added changes -eric

parent eccbc6e4
No related branches found
No related tags found
No related merge requests found
File deleted
...@@ -261,7 +261,6 @@ void MainWindow::newNodes(QStringList blocks) ...@@ -261,7 +261,6 @@ void MainWindow::newNodes(QStringList blocks)
this->ui->noGraphWarningLine->setVisible(false); this->ui->noGraphWarningLine->setVisible(false);
} }
void MainWindow::newConstantBlocks(QStringList blocks) void MainWindow::newConstantBlocks(QStringList blocks)
{ {
ui->xSetpointSelect->clear(); ui->xSetpointSelect->clear();
...@@ -539,7 +538,9 @@ void MainWindow::on_pbSaveWaypoints_clicked() ...@@ -539,7 +538,9 @@ void MainWindow::on_pbSaveWaypoints_clicked()
void MainWindow::on_pbLoadWaypoints_clicked() void MainWindow::on_pbLoadWaypoints_clicked()
{ {
QString openPath = QFileDialog::getOpenFileName(this);
QString filter = "Waypoints (*.wpt)";
QString openPath = QFileDialog::getOpenFileName(this, tr("Open Waypoint File"), QString(),filter);
if (!openPath.isEmpty()) { if (!openPath.isEmpty()) {
QFile f(openPath); QFile f(openPath);
...@@ -590,5 +591,5 @@ void MainWindow::on_posattSrcVrpn_clicked() ...@@ -590,5 +591,5 @@ void MainWindow::on_posattSrcVrpn_clicked()
void MainWindow::on_posattSrcQuad_clicked() void MainWindow::on_posattSrcQuad_clicked()
{ {
trackerTimer->setInterval(500); trackerTimer->setInterval(750);
} }
File deleted
File deleted
#! /bin/bash #! /bin/bash
cut_off="-0.17" cut_off="-0.20"
regex='[+-]?[0-9]+\.?[0-9]*$' regex='[+-]?[0-9]+\.?[0-9]*$'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment