From c4764c0e5b6c6618506929a70f302851e494ecbb Mon Sep 17 00:00:00 2001 From: ItsLemmy Date: Mon, 22 Sep 2025 20:23:00 -0400 Subject: [PATCH] ScreenRecorder: disable toast when recording starts --- Services/ScreenRecorderService.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Services/ScreenRecorderService.qml b/Services/ScreenRecorderService.qml index e4d13543..e45a3785 100644 --- a/Services/ScreenRecorderService.qml +++ b/Services/ScreenRecorderService.qml @@ -159,7 +159,8 @@ Singleton { isRecording = true hasActiveRecording = true monitorTimer.running = true - ToastService.showNotice("Recording started", outputPath, 4000) + // Don't show a toast when recording starts to avoid having the toast in every video. + //ToastService.showNotice("Recording started", outputPath, 4000) } else if (isPending) { // Process not running anymore - was cancelled or failed isPending = false