diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-12-31 00:59:13 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-12-31 00:59:13 +0900 |
| commit | 84f1ce866b1485c200c27266451195410faf072e (patch) | |
| tree | 68774f133237cc8f6b2cb23f4854cde0d793b117 /src/client/app/mobile | |
| parent | Fix bug (diff) | |
| download | misskey-84f1ce866b1485c200c27266451195410faf072e.tar.gz misskey-84f1ce866b1485c200c27266451195410faf072e.tar.bz2 misskey-84f1ce866b1485c200c27266451195410faf072e.zip | |
[Client] line thiknessの設定はデバイスに保存するように
Diffstat (limited to 'src/client/app/mobile')
| -rw-r--r-- | src/client/app/mobile/views/pages/settings.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/app/mobile/views/pages/settings.vue b/src/client/app/mobile/views/pages/settings.vue index e372912474..e8bf0becbb 100644 --- a/src/client/app/mobile/views/pages/settings.vue +++ b/src/client/app/mobile/views/pages/settings.vue @@ -267,8 +267,8 @@ export default Vue.extend({ }, lineWidth: { - get() { return this.$store.state.settings.lineWidth; }, - set(value) { this.$store.dispatch('settings/set', { key: 'lineWidth', value }); } + get() { return this.$store.state.device.lineWidth; }, + set(value) { this.$store.commit('device/set', { key: 'lineWidth', value }); } }, contrastedAcct: { |