diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-02-11 13:38:47 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2022-02-11 13:38:47 +0900 |
| commit | cc019a217f4097f2ac205315680ad7a62d721b74 (patch) | |
| tree | 8c8c4ab6702e05d7f0dff4b00790c4be29101215 /packages/client/src/store.ts | |
| parent | Merge branch 'develop' of https://github.com/misskey-dev/misskey into develop (diff) | |
| download | misskey-cc019a217f4097f2ac205315680ad7a62d721b74.tar.gz misskey-cc019a217f4097f2ac205315680ad7a62d721b74.tar.bz2 misskey-cc019a217f4097f2ac205315680ad7a62d721b74.zip | |
feat(client): make size of reaction picker configuable
Diffstat (limited to 'packages/client/src/store.ts')
| -rw-r--r-- | packages/client/src/store.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/client/src/store.ts b/packages/client/src/store.ts index 0e71060cda..fad54924ad 100644 --- a/packages/client/src/store.ts +++ b/packages/client/src/store.ts @@ -182,6 +182,10 @@ export const defaultStore = markRaw(new Storage('base', { where: 'device', default: 'remote' as 'none' | 'remote' | 'always' }, + reactionPickerSize: { + where: 'device', + default: 1 + }, reactionPickerWidth: { where: 'device', default: 1 |