04-19-2023, 02:46 PM
(04-19-2023, 12:51 PM)Tim Curtis Wrote: I'm able to repro this and it appears to be an issue with the click event bubbling up through the DOM.
Try adding
e.stopPropagation();
to scripts-library.js
Code:case 'single':
e.stopPropagation();
$('#menu-check-single').toggle();
var toggle = $('#menu-check-single').is(":visible") ? '1' : '0';
sendMpdCmd('single ' + toggle);
break;
If that works on your end I'll add it to the check mark cases in upcoming 8.3.2 bugfix release.
Hi Tim,
yes, it works, but doesn't close the menu...