add tagger shortcut (#6261)

(cherry picked from commit b2c8f09585)
This commit is contained in:
Gykes 2025-11-11 21:58:30 -08:00 committed by WithoutPants
parent a95bf348f4
commit c8379c0281
3 changed files with 8 additions and 0 deletions

View file

@ -84,11 +84,17 @@ export const ListViewOptions: React.FC<IListViewOptionsProps> = ({
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");
};
});

View file

@ -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))

View file

@ -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 |