From 8d606b9f34ab13e38b3188e831c84c880c53fba7 Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+nikonratm@users.noreply.github.com> Date: Fri, 15 Jan 2021 02:13:21 -0800 Subject: [PATCH] Handle shift-clicking orignal item --- src-ui/src/app/services/document-list-view.service.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src-ui/src/app/services/document-list-view.service.ts b/src-ui/src/app/services/document-list-view.service.ts index 1ebf86d12..c7ddbd44e 100644 --- a/src-ui/src/app/services/document-list-view.service.ts +++ b/src-ui/src/app/services/document-list-view.service.ts @@ -267,9 +267,8 @@ export class DocumentListViewService { const toIndex = Math.max(this.lastSelectedDocumentIndex, documentToIndex) if (this.lastSelectedDocumentToIndex !== null && - ((this.lastSelectedDocumentToIndex > this.lastSelectedDocumentIndex && documentToIndex < this.lastSelectedDocumentIndex) || - (this.lastSelectedDocumentToIndex < this.lastSelectedDocumentIndex && documentToIndex > this.lastSelectedDocumentIndex))) { - console.log('invert'); + ((this.lastSelectedDocumentToIndex > this.lastSelectedDocumentIndex && documentToIndex <= this.lastSelectedDocumentIndex) || + (this.lastSelectedDocumentToIndex < this.lastSelectedDocumentIndex && documentToIndex >= this.lastSelectedDocumentIndex))) { // new click is "opposite side" of anchor so we invert the old selection this.documents.slice(Math.min(this.lastSelectedDocumentIndex, this.lastSelectedDocumentToIndex), Math.max(this.lastSelectedDocumentIndex, this.lastSelectedDocumentToIndex) + 1).forEach(d => { @@ -282,7 +281,7 @@ export class DocumentListViewService { }) this.lastSelectedDocumentToIndex = documentToIndex } else { // e.g. shift key but was first click - this.lastSelectedDocumentIndex = this.documentIndexInCurrentView(d.id) + this.toggleSelected(d) } }