Skip to content

Commit

Permalink
wulkano#129 Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
thethomasz committed Aug 29, 2022
1 parent 5471c50 commit 2ebe4fe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion main/menus/record.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ export const getRecordMenu = async (isPaused: boolean) => {
}

return Menu.buildFromTemplate(await getRecordMenuTemplate());
};
};
7 changes: 4 additions & 3 deletions main/tray.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ const openRecordingContextMenu = async () => {
};

const openPausedContextMenu = async () => {
tray.popUpContextMenu(await getRecordMenu(true))
}
tray.popUpContextMenu(await getRecordMenu(true));
};

const openCropperWindow = () => windowManager.cropper?.open();

Expand Down Expand Up @@ -84,8 +84,9 @@ const onRecordingTrayClick = (event: KeyboardEvent) => {
pauseRecording();
return;
}

stopRecording();
}
};

const animateIcon = async () => new Promise<void>(resolve => {
const interval = 20;
Expand Down

0 comments on commit 2ebe4fe

Please sign in to comment.