Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions photomap/frontend/static/javascript/umap.js
Original file line number Diff line number Diff line change
Expand Up @@ -1296,6 +1296,11 @@ async function handleImageClick(clickedIndex) {

// Navigate directly to the clicked image without entering search mode
slideState.navigateToIndex(clickedIndex, false);

// Exit fullscreen mode if enabled
if (isFullscreen && state.umapExitFullscreenOnSelection) {
setTimeout(() => toggleFullscreen(false), 100); // slight delay to avoid flicker
}
}

// -------------------- Window Management --------------------
Expand Down