Bump version to 1.5.0.18 and update changelog for recent changes
All checks were successful
Auto Release Plugin / build-and-release (push) Successful in 1m2s

This commit is contained in:
CodeDevMLH
2026-02-09 17:20:40 +01:00
parent 0fa2d01ca3
commit e717c07c54
3 changed files with 5 additions and 5 deletions

View File

@@ -2656,9 +2656,9 @@ const SlideshowManager = {
}
const activeElement = document.activeElement;
const isSlideshowFocused = container.contains(activeElement) || activeElement === container || activeElement === document.body;
if ((e.key === "ArrowRight" || e.key === "ArrowLeft") && !isSlideshowFocused) {
const isSlideshowFocused = container.contains(activeElement) || activeElement === container;
if (!isSlideshowFocused) {
return;
}