From 1b3a8acab2af959fba70927a4bbd3e2de2206d43 Mon Sep 17 00:00:00 2001 From: WithoutPants <53250216+WithoutPants@users.noreply.github.com> Date: Thu, 3 Jul 2025 13:07:37 +1000 Subject: [PATCH] Bring back select all/none to scene list (#5993) --- ui/v2.5/src/components/Scenes/SceneList.tsx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/ui/v2.5/src/components/Scenes/SceneList.tsx b/ui/v2.5/src/components/Scenes/SceneList.tsx index 51795fe61..ebe5be7e3 100644 --- a/ui/v2.5/src/components/Scenes/SceneList.tsx +++ b/ui/v2.5/src/components/Scenes/SceneList.tsx @@ -669,6 +669,16 @@ export const FilteredSceneList = (props: IFilteredScenes) => { isDisplayed: () => !hasSelection, 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" }), onClick: playRandom,