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

Fixed text for the PID profile reset button.
10.7-maintenance
J Blackman 2021-10-10 09:17:06 +11:00 committed by Michael Keller
parent 8d965d0b07
commit e459150c24
4 changed files with 9 additions and 9 deletions

View File

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

View File

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

View File

@ -1163,13 +1163,13 @@ TABS.pid_tuning.initialize = function (callback) {
updatePidDisplay(); updatePidDisplay();
}); });
$('#resetProfile').on('click', function(){ $('#resetPidProfile').on('click', function(){
self.updating = true; self.updating = true;
MSP.promise(MSPCodes.MSP_SET_RESET_CURR_PID).then(function () { MSP.promise(MSPCodes.MSP_SET_RESET_CURR_PID).then(function () {
self.refresh(function () { self.refresh(function () {
self.updating = false; self.updating = false;
GUI.log(i18n.getMessage('pidTuningProfileReset')); GUI.log(i18n.getMessage('pidTuningPidProfileReset'));
}); });
}); });
}); });

View File

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