From cfbf237a91547d8bcc74f26a94bad8e28a2b5600 Mon Sep 17 00:00:00 2001 From: Dragoon Dorise Date: Fri, 25 Oct 2024 23:49:47 +0200 Subject: [PATCH] less notifications --- functions/ToolScripts/emuDeckSaveSync.ps1 | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/functions/ToolScripts/emuDeckSaveSync.ps1 b/functions/ToolScripts/emuDeckSaveSync.ps1 index 5348ecd6..6b2010de 100644 --- a/functions/ToolScripts/emuDeckSaveSync.ps1 +++ b/functions/ToolScripts/emuDeckSaveSync.ps1 @@ -812,9 +812,9 @@ function cloud_sync_lock($userPath){ } Add-Content "$userFolder\EmuDeck\cloud.lock" "Locked" -NoNewline -Encoding UTF8 - $toast = steamToast -MessageText "Uploading..." - Start-Sleep -Milliseconds 500 - $toast.Close() + #$toast = steamToast -MessageText "Uploading..." + #Start-Sleep -Milliseconds 500 + #$toast.Close() #stopLog } @@ -824,9 +824,9 @@ function cloud_sync_unlock($userPath){ $userFolder = "$userPath" } Remove-Item "$userFolder\EmuDeck\cloud.lock" -Force -ErrorAction SilentlyContinue - $toast = steamToast -MessageText "Uploads completed!" - Start-Sleep -Milliseconds 500 - $toast.Close() + #$toast = steamToast -MessageText "Uploads completed!" + #Start-Sleep -Milliseconds 500 + #$toast.Close() #stopLog }