Fix play random not using effective filter (#6202)

This commit is contained in:
WithoutPants 2025-10-29 11:12:00 +11:00 committed by GitHub
parent 96b5a9448c
commit 648875995c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -518,7 +518,7 @@ export const FilteredSceneList = (props: IFilteredScenes) => {
const queue = useMemo(() => SceneQueue.fromListFilterModel(filter), [filter]);
const playRandom = usePlayRandom(filter, totalCount);
const playRandom = usePlayRandom(effectiveFilter, totalCount);
const playSelected = usePlaySelected(selectedIds);
const playFirst = usePlayFirst();