Merge pull request #977 from konstantinullrich/#631-Keyboard-selection-via-Shift-not-working-when-starting-a-selection-from-the-right

Implement Blib's change
pull/987/head
Mikunj Varsani 5 years ago committed by GitHub
commit ba48028375
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2408,7 +2408,7 @@
let direction = $input.selectionDirection;
if (event.shiftKey) {
if (direction === 'none') {
if (direction === 'none' || direction === 'forward') {
if (isLeft) {
direction = 'backward';
} else {

Loading…
Cancel
Save