mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-24 00:35:26 +03:00
Merge pull request #713 from mikeller/fix_slider_enable_motors_tab
Fixed sliders being disabled when re-entering the motors tab with motors running.
This commit is contained in:
commit
906f6ac4bc
1 changed files with 1 additions and 1 deletions
|
@ -531,7 +531,7 @@ TABS.motors.initialize = function (callback) {
|
||||||
|
|
||||||
if (motors_running) {
|
if (motors_running) {
|
||||||
if (!self.armed) {
|
if (!self.armed) {
|
||||||
$('#motorsEnableTestMode').prop('checked', true);
|
$('#motorsEnableTestMode').prop('checked', true).change();
|
||||||
}
|
}
|
||||||
// motors are running adjust sliders to current values
|
// motors are running adjust sliders to current values
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue