Bring back select all/none to scene list (#5993)

This commit is contained in:
WithoutPants
2025-07-03 13:07:37 +10:00
committed by GitHub
parent 108c0c7de5
commit 1b3a8acab2

View File

@@ -669,6 +669,16 @@ export const FilteredSceneList = (props: IFilteredScenes) => {
isDisplayed: () => !hasSelection, isDisplayed: () => !hasSelection,
className: "create-new-item", className: "create-new-item",
}, },
{
text: intl.formatMessage({ id: "actions.select_all" }),
onClick: () => onSelectAll(),
isDisplayed: () => totalCount > 0,
},
{
text: intl.formatMessage({ id: "actions.select_none" }),
onClick: () => onSelectNone(),
isDisplayed: () => hasSelection,
},
{ {
text: intl.formatMessage({ id: "actions.play_random" }), text: intl.formatMessage({ id: "actions.play_random" }),
onClick: playRandom, onClick: playRandom,