Fix right click bookmark bug

This commit is contained in:
siriusXT
2023-09-06 14:49:01 +00:00
parent 40971afe4f
commit 92e43bc051
2 changed files with 4 additions and 1 deletions

View File

@@ -34,7 +34,7 @@ export default class NoteLauncher extends AbstractLauncher {
async launch(evt) {
// await because subclass overrides can be async
const targetNoteId = await this.getTargetNoteId();
if (!targetNoteId) {
if (!targetNoteId || evt.which === 3) {
return;
}