1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-01 09:24:10 +01:00

Little cleanup, spelling mistake etc. Not yet got the AFC reading working.

git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@2716 ebee16cc-31ac-478f-84a7-5cbb03baadba
This commit is contained in:
pip 2011-02-03 14:33:09 +00:00 committed by pip
parent 7643cd2016
commit 768bdbba44
2 changed files with 9 additions and 3 deletions

View File

@ -7,7 +7,7 @@
<x>0</x>
<y>0</y>
<width>571</width>
<height>486</height>
<height>508</height>
</rect>
</property>
<property name="windowTitle">
@ -441,7 +441,7 @@
<item row="7" column="1">
<widget class="QProgressBar" name="progressBar_RSSI">
<property name="toolTip">
<string>Received Signal Stremght Indicator</string>
<string>Received Signal Strength Indicator</string>
</property>
<property name="minimum">
<number>-120</number>
@ -790,6 +790,12 @@
</item>
<item>
<widget class="QLineEdit" name="lineEdit_AESKey">
<property name="font">
<font>
<family>Courier New</family>
<pointsize>9</pointsize>
</font>
</property>
<property name="toolTip">
<string>The AES encryption key - has to be the same key on the remote modem as well)</string>
</property>

View File

@ -181,7 +181,7 @@ PipXtremeGadgetWidget::PipXtremeGadgetWidget(QWidget *parent) :
m_widget->progressBar_RSSI->setMinimum(-120);
m_widget->progressBar_RSSI->setMaximum(-20);
m_widget->progressBar_RSSI->setValue(-80);
m_widget->progressBar_RSSI->setValue(m_widget->progressBar_RSSI->minimum());
m_widget->graphicsView_Spectrum->setScene(new QGraphicsScene(this));
m_widget->graphicsView_Spectrum->setViewport(new QGLWidget(QGLFormat(QGL::SampleBuffers)));