Skip to content

Commit e7d0fbe

Browse files
authored
Remove notification on every autosave
1 parent 5cd98b8 commit e7d0fbe

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

PasteIntoFile/Dialog.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,12 +116,10 @@ public Dialog(string location = null, string filename = null, bool? showDialogOv
116116

117117
var file = clipRead ? save(overwriteIfExists) : null;
118118
if (file != null) {
119+
Environment.ExitCode = 0;
119120

120121
// select file in explorer for rename and exit afterwards
121122
ExplorerUtil.FilenameEditComplete += (sender, args) => {
122-
Program.ShowBalloon(Resources.str_autosave_balloontitle,
123-
new[] { file, Resources.str_autosave_balloontext }, 10);
124-
Environment.ExitCode = 0;
125123
CloseAsSoonAsPossible();
126124
};
127125

0 commit comments

Comments
 (0)