Add wall zoom functionality (#6011)

* Show zoom slider when wall view active
* Add zoom functionality to scene wall
* Add zoom functionality to image wall
* Add zoom functionality to gallery wall
* Add zoom functionality for marker wall
This commit is contained in:
WithoutPants
2025-09-09 16:45:29 +10:00
committed by GitHub
parent b1883f3df5
commit cc97e96eaa
8 changed files with 148 additions and 37 deletions

View File

@@ -219,7 +219,13 @@ const SceneList: React.FC<{
);
}
if (filter.displayMode === DisplayMode.Wall) {
return <SceneWallPanel scenes={scenes} sceneQueue={queue} />;
return (
<SceneWallPanel
scenes={scenes}
sceneQueue={queue}
zoomIndex={filter.zoomIndex}
/>
);
}
if (filter.displayMode === DisplayMode.Tagger) {
return <Tagger scenes={scenes} queue={queue} />;