We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0042257 commit 58ebbfeCopy full SHA for 58ebbfe
apps/desktop/src/routes/target-select-overlay.tsx
@@ -691,6 +691,13 @@ function RecordingControls(props: { target: ScreenCaptureTarget }) {
691
await Submenu.new({
692
text: "Recording Countdown",
693
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
+ }),
701
await CheckMenuItem.new({
702
text: "3 seconds",
703
action: () => generalSettingsStore.set({ recordingCountdown: 3 }),
0 commit comments