Skip to content

Commit f3f0d35

Browse files
authored
Merge pull request #2192 from iNavFlight/MrD_Fix-defaults-bug
Once more with the timings!
2 parents 2616c2b + 40fbbb0 commit f3f0d35

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

js/defaults_dialog.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1246,10 +1246,10 @@ helper.defaultsDialog = (function () {
12461246
privateScope.finalize(selectedDefaultPreset);
12471247
});
12481248

1249-
let timeOut0 = setTimeout(profileChainer[0].execute, 2000);
1250-
let timeOut1 = setTimeout(profileChainer[1].execute, 11000);
1251-
let timeOut2 = setTimeout(profileChainer[2].execute, 20000);
1252-
let timeOut3 = setTimeout(settingsChainer.execute, 29000);
1249+
let timeOut0 = setTimeout(profileChainer[0].execute, 4000);
1250+
let timeOut1 = setTimeout(profileChainer[1].execute, 14000);
1251+
let timeOut2 = setTimeout(profileChainer[2].execute, 24000);
1252+
let timeOut3 = setTimeout(settingsChainer.execute, 34000);
12531253
}
12541254

12551255
privateScope.onPresetClick = function (event) {

0 commit comments

Comments
 (0)