From 042a0cb765a4f273a78ea42c52fcbed718da8b8a Mon Sep 17 00:00:00 2001 From: N00MKRAD Date: Thu, 4 Feb 2021 22:05:40 +0100 Subject: [PATCH] disable folder keeping until resuming is fully implemented --- Code/Main/Interpolate.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/Main/Interpolate.cs b/Code/Main/Interpolate.cs index bea7dda..41e0a3b 100644 --- a/Code/Main/Interpolate.cs +++ b/Code/Main/Interpolate.cs @@ -213,7 +213,7 @@ namespace Flowframes Program.mainForm.SetProgress(0); if (!current.stepByStep && !Config.GetBool("keepTempFolder")) { - if(IOUtils.GetAmountOfFiles(Path.Combine(current.tempFolder, Paths.resumeDir), true) > 0) + if(false /* IOUtils.GetAmountOfFiles(Path.Combine(current.tempFolder, Paths.resumeDir), true) > 0 */) // TODO: Uncomment for 1.23 { DialogResult dialogResult = MessageBox.Show($"Delete the temp folder (Yes) or keep it for resuming later (No)?", "Delete temporary files?", MessageBoxButtons.YesNo); if (dialogResult == DialogResult.Yes)