don't select tree node when dragging

This commit is contained in:
zadam
2020-04-11 15:09:38 +02:00
parent 242f139be4
commit b5bf581bd9
2 changed files with 2 additions and 4 deletions

View File

@@ -134,9 +134,7 @@ export default class NoteTreeWidget extends TabAwareWidget {
return false;
}
node.setSelected(true);
const notes = this.getSelectedNodes().map(node => ({
const notes = this.getSelectedOrActiveNodes(node).map(node => ({
noteId: node.data.noteId,
title: node.title
}));