mirror of
https://github.com/lostpaul/obsidian-folder-notes.git
synced 2026-07-22 07:40:24 +00:00
Fix #250
This commit is contained in:
parent
0adebd0042
commit
ef0dbbd66b
1 changed files with 1 additions and 1 deletions
|
|
@ -280,7 +280,7 @@ export default class FolderNotesPlugin extends Plugin {
|
|||
if (this.settings.openWithCtrl && !evt.ctrlKey) return;
|
||||
if (this.settings.openWithAlt && !evt.altKey) return;
|
||||
|
||||
if (!this.settings.enableCollapsing) {
|
||||
if (!this.settings.enableCollapsing || evt.ctrlKey) {
|
||||
evt.preventDefault();
|
||||
evt.stopImmediatePropagation();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue