Fixed rates curve display for legacy rates.

10.3.x-maintenance
Michael Keller 2016-07-06 12:11:20 +12:00
parent f6b78219fd
commit 67bad649ec
2 changed files with 3 additions and 3 deletions

View File

@ -274,11 +274,11 @@
<td i18n="pidTuningMaxAngularVelRoll"></td>
<td class="maxAngularVelRoll"></td>
</tr>
<tr>
<tr class="new_rates">
<td i18n="pidTuningMaxAngularVelPitch"></td>
<td class="maxAngularVelPitch"></td>
</tr>
<tr>
<tr class="new_rates">
<td i18n="pidTuningMaxAngularVelYaw"></td>
<td class="maxAngularVelYaw"></td>
</tr>

View File

@ -473,7 +473,7 @@ TABS.pid_tuning.initialize = function (callback) {
var useLegacyCurve = false;
if (CONFIG.flightControllerIdentifier !== "BTFL" || semver.lt(CONFIG.flightControllerVersion, "2.8.0")) {
$('.pid_tuning .new_rates').hide();
$('.rc_curve .new_rates').hide();
useLegacyCurve = true;
}