diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-09-18 14:43:54 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-09-18 14:43:54 +0900 |
| commit | dba04cc59cb30d3acc9dd03be5c2be63718453e9 (patch) | |
| tree | deb3c0178b418cb882d5640689a7a554a7c00388 /src/client/app/common/views/components | |
| parent | Improve keyboard shortcuts (diff) | |
| download | misskey-dba04cc59cb30d3acc9dd03be5c2be63718453e9.tar.gz misskey-dba04cc59cb30d3acc9dd03be5c2be63718453e9.tar.bz2 misskey-dba04cc59cb30d3acc9dd03be5c2be63718453e9.zip | |
Improve keyboard shortcuts
Diffstat (limited to 'src/client/app/common/views/components')
| -rw-r--r-- | src/client/app/common/views/components/reaction-picker.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/app/common/views/components/reaction-picker.vue b/src/client/app/common/views/components/reaction-picker.vue index ce0d2a8ea3..fff2c56f00 100644 --- a/src/client/app/common/views/components/reaction-picker.vue +++ b/src/client/app/common/views/components/reaction-picker.vue @@ -77,10 +77,10 @@ export default Vue.extend({ return { 'esc': this.close, 'enter|space|plus': this.choose, - 'up': this.focusUp, - 'right': this.focusRight, - 'down': this.focusDown, - 'left': this.focusLeft, + 'up|k': this.focusUp, + 'left|h|shift+tab': this.focusLeft, + 'right|l|tab': this.focusRight, + 'down|j': this.focusDown, '1': () => this.react('like'), '2': () => this.react('love'), '3': () => this.react('laugh'), |