mirror of
https://github.com/zadam/trilium.git
synced 2025-11-01 02:45:54 +01:00
Merge branch 'master' into next58
# Conflicts: # libraries/ckeditor/ckeditor.js # libraries/ckeditor/ckeditor.js.map # package-lock.json # package.json # src/public/app/layouts/desktop_layout.js
This commit is contained in:
@@ -347,7 +347,7 @@ export default class NoteTreeWidget extends NoteContextAwareWidget {
|
||||
|
||||
node.setFocus(true);
|
||||
}
|
||||
else if (event.ctrlKey) {
|
||||
else if ((!utils.isMac() && event.ctrlKey) || (utils.isMac() && event.metaKey)) {
|
||||
const notePath = treeService.getNotePath(node);
|
||||
appContext.tabManager.openTabWithNoteWithHoisting(notePath);
|
||||
}
|
||||
@@ -1483,7 +1483,7 @@ export default class NoteTreeWidget extends NoteContextAwareWidget {
|
||||
clipboard.pasteInto(node.data.branchId);
|
||||
}
|
||||
|
||||
pasteNotesAfterFromClipboard({node}) {
|
||||
pasteNotesAfterFromClipboardCommand({node}) {
|
||||
clipboard.pasteAfter(node.data.branchId);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user