Commit 5f322e47 authored by Lorenz Meier's avatar Lorenz Meier

Small runtime fixes

parent 18511a93
......@@ -12,7 +12,7 @@
#define WITH_TEXT_TO_SPEECH 1
#define QGC_APPLICATION_NAME "QGroundControl"
#define QGC_APPLICATION_VERSION "v. 1.0.2 (beta)"
#define QGC_APPLICATION_VERSION "v. 1.0.5 (beta)"
namespace QGC
......
......@@ -236,7 +236,7 @@ MainWindow::MainWindow(QWidget *parent):
const int screenWidth = QApplication::desktop()->width();
const int screenHeight = QApplication::desktop()->height();
if (screenWidth < 1400)
if (screenWidth < 1500)
{
resize(screenWidth, screenHeight - 80);
show();
......
......@@ -22,10 +22,10 @@ QGCHilConfiguration::QGCHilConfiguration(UAS *mav, QWidget *parent) :
settings.beginGroup("QGC_HILCONFIG");
if (i > 0) {
on_simComboBox_currentIndexChanged(i);
ui->simComboBox->blockSignals(true);
ui->simComboBox->setCurrentIndex(i);
ui->simComboBox->blockSignals(false);
on_simComboBox_currentIndexChanged(i);
}
settings.endGroup();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment