Skip to content

Commit 58ebbfe

Browse files
allow disabling countdown
1 parent 0042257 commit 58ebbfe

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

apps/desktop/src/routes/target-select-overlay.tsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -691,6 +691,13 @@ function RecordingControls(props: { target: ScreenCaptureTarget }) {
691691
await Submenu.new({
692692
text: "Recording Countdown",
693693
items: [
694+
await CheckMenuItem.new({
695+
text: "Off",
696+
action: () => generalSettingsStore.set({ recordingCountdown: 0 }),
697+
checked:
698+
!generalSetings.data?.recordingCountdown ||
699+
generalSetings.data?.recordingCountdown === 0,
700+
}),
694701
await CheckMenuItem.new({
695702
text: "3 seconds",
696703
action: () => generalSettingsStore.set({ recordingCountdown: 3 }),

0 commit comments

Comments
 (0)