don't save acc popup open state

This commit is contained in:
Til Schmitter 2026-04-18 21:28:19 +02:00
parent a02dce0b6d
commit 44afd019c1

View file

@ -1369,7 +1369,8 @@ function opclick(e) {
if (QS('#op_' + dest + '.act'))
dest = '';
swrite('opmode', dest || null);
if(dest != 'acc')
swrite('opmode', dest || null);
if (ctrl(e))
return;
@ -1426,8 +1427,8 @@ function goto(dest) {
if(dest == 'bup'){
clmod(ebi('up2k'), 'vis', true);
}
if(dest == 'bup' || dest == 'up2k')
ebi('bup_tgl').open = dest == 'bup';
if(dest == 'bup')
ebi('bup_tgl').open = true;
var fn = window['goto_' + dest];
if (fn)