From 0ad8107e4a1d2ff15e0df67f8b76b3163211f209 Mon Sep 17 00:00:00 2001 From: Quentin Decaunes Date: Sat, 23 Mar 2019 17:18:14 +0100 Subject: [PATCH] Fixed experimental tab apply checkbox not working properly. --- js/methods.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/methods.js b/js/methods.js index 9ad6e0c..2986c9e 100644 --- a/js/methods.js +++ b/js/methods.js @@ -217,7 +217,7 @@ function loadLatestUsedSettings() { function registerEventListenerForSettingsInput() { const settings = require('electron-settings'); - var checkbox_toggle_options = document.querySelectorAll('#controller-tab input[id^=apply_]'); + var checkbox_toggle_options = document.querySelectorAll('#controller-tab input[id^=apply_], #experimental-tab input[id^=apply_]'); const hideOptionBasedOnInput = function (input) { if (input.checked) { input.parentElement.parentElement.nextElementSibling.removeAttribute('hidden');