We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2984e9 commit 736a8b1Copy full SHA for 736a8b1
wled00/data/index.js
@@ -3062,11 +3062,11 @@ function togglePcMode(fromB = false)
3062
if (fromB) {
3063
pcModeA = !pcModeA;
3064
localStorage.setItem('pcm', pcModeA);
3065
- openTab(0, true);
3066
}
3067
pcMode = (wW >= 1024) && pcModeA;
3068
if (cpick) cpick.resize(pcMode && wW>1023 && wW<1250 ? 230 : 260); // for tablet in landscape
3069
if (!fromB && ((wW < 1024 && lastw < 1024) || (wW >= 1024 && lastw >= 1024))) return; // no change in size and called from size()
+ if (pcMode) openTab(0, true);
3070
gId('buttonPcm').className = (pcMode) ? "active":"";
3071
gId('bot').style.height = (pcMode && !cfg.comp.pcmbot) ? "0":"auto";
3072
sCol('--bh', gId('bot').clientHeight + "px");
0 commit comments