From 1a0fda71f52756a691655e07c5d278a69ab25707 Mon Sep 17 00:00:00 2001 From: Twest2 Date: Sat, 13 Jun 2026 14:25:40 -0500 Subject: [PATCH] Remove new-capture follow-up toast --- app/renderer/app.js | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/app/renderer/app.js b/app/renderer/app.js index 5f4b1fa..fd7bd19 100644 --- a/app/renderer/app.js +++ b/app/renderer/app.js @@ -191,17 +191,7 @@ class StepForgeApp { const guide = await api.library.create({ title: 'Untitled capture' }); await this.refreshData(); await this.openGuide(guide.guideId); - const state = await this.armCaptureSession(guide.guideId); - const hotkey = this.state.settings?.capture?.hotkeyCapture; - let how; - if (state.clickCapture) { - how = 'every click will grab a step'; - } else if (state.intervalSec > 0) { - how = `a step will be grabbed every ${state.intervalSec}s`; - } else { - how = hotkey ? `press ${hotkey} to grab steps` : 'use Shoot to grab steps'; - } - toast(`Click "Start recording" in the red bar when you're ready — ${how}. StepForge tucks away; use the red tray icon to pause or finish.`); + await this.armCaptureSession(guide.guideId); } async openExistingWorkspace() {