From 97f9afe579bb6f22a89982d544cc27aafc6288df Mon Sep 17 00:00:00 2001 From: Ximi1970 Date: Tue, 16 Apr 2024 21:52:00 +0200 Subject: [PATCH] Fix option visibility --- webext/options.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/webext/options.js b/webext/options.js index cd0d7c5..8946388 100644 --- a/webext/options.js +++ b/webext/options.js @@ -1603,6 +1603,9 @@ async function start() { if ( !SysTrayX.Info.options.kdeIntegration || SysTrayX.Info.platformInfo.os !== "linux" ) { document.getElementById("kdeintegration").style.display = "none"; + } + + if ( SysTrayX.Info.platformInfo.os !== "linux" ) { document.getElementById("positionscorrectionselect").style.display = "none"; }