diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-09-18 15:02:26 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-09-18 15:02:26 +0900 |
| commit | 6ead1de383764bf4c7cbd3b2e453ed8bde6da0d3 (patch) | |
| tree | 2da3b3f2f23189bb86a02fd8086d8701a9ea2faf /src | |
| parent | 将来的にバグに繋がりかねない挙動を修正 (diff) | |
| download | misskey-6ead1de383764bf4c7cbd3b2e453ed8bde6da0d3.tar.gz misskey-6ead1de383764bf4c7cbd3b2e453ed8bde6da0d3.tar.bz2 misskey-6ead1de383764bf4c7cbd3b2e453ed8bde6da0d3.zip | |
Improve readability
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/desktop/views/components/notes.note.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/desktop/views/components/notes.note.vue b/src/client/app/desktop/views/components/notes.note.vue index a2ba85bdf9..e2c61dabe8 100644 --- a/src/client/app/desktop/views/components/notes.note.vue +++ b/src/client/app/desktop/views/components/notes.note.vue @@ -115,8 +115,8 @@ export default Vue.extend({ return { 'r|left': () => this.reply(true), 'a|plus': () => this.react(true), - 'ctrl+q|ctrl+right': this.renoteDirectly, 'q|right': () => this.renote(true), + 'ctrl+q|ctrl+right': this.renoteDirectly, 'up|k|shift+tab': this.focusBefore, 'down|j|tab': this.focusAfter, '1': () => this.reactDirectly('like'), |