Skip to content

Commit

Permalink
feat: open link with modifier key pressed
Browse files Browse the repository at this point in the history
  • Loading branch information
eatgrass committed Jan 13, 2024
1 parent 1f02816 commit 79e22bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/TasksComponent.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ const progressText = (item: TaskItem) => {
}
}
const openFile = () => {
tracker.openFile()
const openFile = (e: MouseEvent) => {
tracker.openFile(e)
}
const showTaskMenu = (task: TaskItem) => (e: MouseEvent) => {
Expand Down

0 comments on commit 79e22bd

Please sign in to comment.