Skip to content

Commit

Permalink
- Fixes new note creation for encrypted folder
Browse files Browse the repository at this point in the history
  • Loading branch information
glushchenko committed Nov 2, 2022
1 parent 0c273a1 commit 49cf9d5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion FSNotes/View/SidebarOutlineView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1163,7 +1163,9 @@ class SidebarOutlineView: NSOutlineView,
vc.notesTableView.disableLockedProject()
vc.updateTable() {
if action == "menu.newNote" {
_ = vc.createNote()
DispatchQueue.main.async {
_ = vc.createNote()
}
}
}

Expand Down

0 comments on commit 49cf9d5

Please sign in to comment.