From e7d0fbe35d187277720b5a8e9a87e129783274b3 Mon Sep 17 00:00:00 2001 From: Philipp Niedermayer Date: Mon, 18 Dec 2023 23:01:27 +0100 Subject: [PATCH] Remove notification on every autosave --- PasteIntoFile/Dialog.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/PasteIntoFile/Dialog.cs b/PasteIntoFile/Dialog.cs index 1456162..7eb58ef 100644 --- a/PasteIntoFile/Dialog.cs +++ b/PasteIntoFile/Dialog.cs @@ -116,12 +116,10 @@ public Dialog(string location = null, string filename = null, bool? showDialogOv var file = clipRead ? save(overwriteIfExists) : null; if (file != null) { + Environment.ExitCode = 0; // select file in explorer for rename and exit afterwards ExplorerUtil.FilenameEditComplete += (sender, args) => { - Program.ShowBalloon(Resources.str_autosave_balloontitle, - new[] { file, Resources.str_autosave_balloontext }, 10); - Environment.ExitCode = 0; CloseAsSoonAsPossible(); };