Auto merged - #2622 at Sat, 09 Oct 2021 22:17:06 GMT

Fixed text for the PID profile reset button.
10.8-maintenance
J Blackman 2021-10-10 09:17:06 +11:00 committed by GitHub
commit 16acc68182
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 8 deletions

View File

@ -1963,11 +1963,11 @@
"dialogCopyProfileClose": {
"message": "Cancel"
},
"pidTuningResetProfile": {
"message": "Reset all profile values"
"pidTuningResetPidProfile": {
"message": "Reset current PID profile settings"
},
"pidTuningProfileReset": {
"message": "Loaded default profile values."
"pidTuningPidProfileReset": {
"message": "Loaded default values for the current PID profile."
},
"pidTuningReceivedProfile": {
"message": "Flight controller set Profile: <strong class=\"message-positive\">$1</strong>"

View File

@ -488,7 +488,7 @@
}
.tab-pid_tuning .resetbt {
width: 140px;
width: 200px;
margin-right: 10px;
}

View File

@ -1364,7 +1364,7 @@ TABS.pid_tuning.initialize = function (callback) {
updatePidDisplay();
});
$('#resetProfile').on('click', function(){
$('#resetPidProfile').on('click', function(){
self.updating = true;
self.sliderRetainConfiguration = true;
@ -1372,7 +1372,7 @@ TABS.pid_tuning.initialize = function (callback) {
self.refresh(function () {
self.updating = false;
GUI.log(i18n.getMessage('pidTuningProfileReset'));
GUI.log(i18n.getMessage('pidTuningPidProfileReset'));
});
});
});

View File

@ -40,7 +40,7 @@
<a href="#" id="copyRateProfile" i18n="pidTuningCopyRateProfile"></a>
</div>
<div class="default_btn resetbt">
<a href="#" id="resetProfile" i18n="pidTuningResetProfile"></a>
<a href="#" id="resetPidProfile" i18n="pidTuningResetPidProfile"></a>
</div>
<div class="default_btn show showAllPids">
<a href="#" id="showAllPids" i18n="pidTuningShowAllPids"></a>