From 2ed7ed5de56cdca8dd411743ab8292a4f4e0963d Mon Sep 17 00:00:00 2001 From: Konstantin Ullrich Date: Wed, 11 Mar 2020 17:23:42 +0100 Subject: [PATCH] Implement Blib's change --- js/views/conversation_view.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/views/conversation_view.js b/js/views/conversation_view.js index 93ce33d67..ef60f2a39 100644 --- a/js/views/conversation_view.js +++ b/js/views/conversation_view.js @@ -2408,7 +2408,7 @@ let direction = $input.selectionDirection; if (event.shiftKey) { - if (direction === 'none') { + if (direction === 'none' || direction === 'forward') { if (isLeft) { direction = 'backward'; } else { @@ -2419,6 +2419,7 @@ direction = 'none'; } + console.log(isLeft, direction, posStart, posEnd, newPosStart, newPosEnd); if (direction === 'forward') { newPosStart = posStart; } else if (direction === 'backward') {