mirror of
https://github.com/stashapp/stash.git
synced 2025-12-07 17:02:38 +01:00
parent
a95bf348f4
commit
c8379c0281
3 changed files with 8 additions and 0 deletions
|
|
@ -84,11 +84,17 @@ export const ListViewOptions: React.FC<IListViewOptionsProps> = ({
|
||||||
onSetDisplayMode(DisplayMode.Wall);
|
onSetDisplayMode(DisplayMode.Wall);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Mousetrap.bind("v t", () => {
|
||||||
|
if (displayModeOptions.includes(DisplayMode.Tagger)) {
|
||||||
|
onSetDisplayMode(DisplayMode.Tagger);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
return () => {
|
return () => {
|
||||||
Mousetrap.unbind("v g");
|
Mousetrap.unbind("v g");
|
||||||
Mousetrap.unbind("v l");
|
Mousetrap.unbind("v l");
|
||||||
Mousetrap.unbind("v w");
|
Mousetrap.unbind("v w");
|
||||||
|
Mousetrap.unbind("v t");
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@
|
||||||
|
|
||||||
|
|
||||||
### 🎨 Improvements
|
### 🎨 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]** 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]** 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))
|
* **[0.29.2]** Restyled the scene list toolbar based on user feedback. ([#6215](https://github.com/stashapp/stash/pull/6215))
|
||||||
|
|
|
||||||
|
|
@ -30,6 +30,7 @@
|
||||||
| `v g` | Set view to grid |
|
| `v g` | Set view to grid |
|
||||||
| `v l` | Set view to list |
|
| `v l` | Set view to list |
|
||||||
| `v w` | Set view to wall |
|
| `v w` | Set view to wall |
|
||||||
|
| `v t` | Set view to tagger |
|
||||||
| `+` | Increase zoom slider |
|
| `+` | Increase zoom slider |
|
||||||
| `-` | Decrease zoom slider |
|
| `-` | Decrease zoom slider |
|
||||||
| `←` | Previous page of results |
|
| `←` | Previous page of results |
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue