From 083214a22dc2daecdce554ec674861081f6683c5 Mon Sep 17 00:00:00 2001 From: Michael Keller Date: Wed, 27 Jul 2016 07:13:38 +1200 Subject: [PATCH] Fixed version check. --- tabs/pid_tuning.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tabs/pid_tuning.js b/tabs/pid_tuning.js index 96c0a9dc..04f74fe8 100755 --- a/tabs/pid_tuning.js +++ b/tabs/pid_tuning.js @@ -303,7 +303,7 @@ TABS.pid_tuning.initialize = function (callback) { $('#pid_main').show(); - if (CONFIG.flightControllerIdentifier === "BTFL" || semver.ge(CONFIG.flightControllerVersion, "2.9.0")) { + if (semver.ge(CONFIG.flightControllerVersion, "2.9.0")) { $('#pid_filter').show(); }