From c8379c0281cb81ca82876a75de692f87e02efef9 Mon Sep 17 00:00:00 2001 From: Gykes <24581046+Gykes@users.noreply.github.com> Date: Tue, 11 Nov 2025 21:58:30 -0800 Subject: [PATCH] add tagger shortcut (#6261) (cherry picked from commit b2c8f0958509603b89e88e6de933cad890024df3) --- ui/v2.5/src/components/List/ListViewOptions.tsx | 6 ++++++ ui/v2.5/src/docs/en/Changelog/v0290.md | 1 + ui/v2.5/src/docs/en/Manual/KeyboardShortcuts.md | 1 + 3 files changed, 8 insertions(+) diff --git a/ui/v2.5/src/components/List/ListViewOptions.tsx b/ui/v2.5/src/components/List/ListViewOptions.tsx index 1ea928983..04adcaa74 100644 --- a/ui/v2.5/src/components/List/ListViewOptions.tsx +++ b/ui/v2.5/src/components/List/ListViewOptions.tsx @@ -84,11 +84,17 @@ export const ListViewOptions: React.FC = ({ onSetDisplayMode(DisplayMode.Wall); } }); + Mousetrap.bind("v t", () => { + if (displayModeOptions.includes(DisplayMode.Tagger)) { + onSetDisplayMode(DisplayMode.Tagger); + } + }); return () => { Mousetrap.unbind("v g"); Mousetrap.unbind("v l"); Mousetrap.unbind("v w"); + Mousetrap.unbind("v t"); }; }); diff --git a/ui/v2.5/src/docs/en/Changelog/v0290.md b/ui/v2.5/src/docs/en/Changelog/v0290.md index a8c9fb374..8092045b0 100644 --- a/ui/v2.5/src/docs/en/Changelog/v0290.md +++ b/ui/v2.5/src/docs/en/Changelog/v0290.md @@ -5,6 +5,7 @@ ### 🎨 Improvements +* **[0.29.4]** Added keyboard shortcut for tagger view (`v t`). ([#6261](https://github.com/stashapp/stash/pull/6261)) * **[0.29.2]** Returned saved filters button to the top toolbar in the Scene list. ([#6215](https://github.com/stashapp/stash/pull/6215)) * **[0.29.2]** Top pagination can now be optionally shown in the scene list with [custom css](https://github.com/stashapp/stash/pull/6234#issue-3593190476). ([#6234](https://github.com/stashapp/stash/pull/6234)) * **[0.29.2]** Restyled the scene list toolbar based on user feedback. ([#6215](https://github.com/stashapp/stash/pull/6215)) diff --git a/ui/v2.5/src/docs/en/Manual/KeyboardShortcuts.md b/ui/v2.5/src/docs/en/Manual/KeyboardShortcuts.md index 870de61b5..33cfce0c2 100644 --- a/ui/v2.5/src/docs/en/Manual/KeyboardShortcuts.md +++ b/ui/v2.5/src/docs/en/Manual/KeyboardShortcuts.md @@ -30,6 +30,7 @@ | `v g` | Set view to grid | | `v l` | Set view to list | | `v w` | Set view to wall | +| `v t` | Set view to tagger | | `+` | Increase zoom slider | | `-` | Decrease zoom slider | | `←` | Previous page of results |