1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-19 04:52:12 +01:00

Merged in f5soh/librepilot/LP-266_Remove_90deg_pitch_limit (pull request #207)

LP-266 pitch virtual board rotation in gui is limited to 90 degrees
This commit is contained in:
Fredrik Arvidsson 2016-04-03 13:33:33 +02:00
commit 3498f3c981
2 changed files with 4 additions and 4 deletions

View File

@ -239,10 +239,10 @@ font:bold;</string>
<item row="1" column="3"> <item row="1" column="3">
<widget class="QSpinBox" name="pitchBias"> <widget class="QSpinBox" name="pitchBias">
<property name="minimum"> <property name="minimum">
<number>-90</number> <number>-180</number>
</property> </property>
<property name="maximum"> <property name="maximum">
<number>90</number> <number>180</number>
</property> </property>
</widget> </widget>
</item> </item>

View File

@ -509,10 +509,10 @@ p, li { white-space: pre-wrap; }
<item row="1" column="3"> <item row="1" column="3">
<widget class="QDoubleSpinBox" name="pitchRotation"> <widget class="QDoubleSpinBox" name="pitchRotation">
<property name="minimum"> <property name="minimum">
<double>-90.000000000000000</double> <double>-180.000000000000000</double>
</property> </property>
<property name="maximum"> <property name="maximum">
<double>90.000000000000000</double> <double>180.000000000000000</double>
</property> </property>
</widget> </widget>
</item> </item>