From dcafa5f9ca4080659098bbc9e4b3b5f6a9efbd65 Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Tue, 8 Feb 2022 10:30:59 -0500 Subject: [PATCH] Properly allow recovery disabling --- IDE/src/FileRecovery.bf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IDE/src/FileRecovery.bf b/IDE/src/FileRecovery.bf index 28e0eb76..16ad1021 100644 --- a/IDE/src/FileRecovery.bf +++ b/IDE/src/FileRecovery.bf @@ -178,7 +178,7 @@ namespace IDE public void CheckWorkspace() { - if ((gApp.mSettings.mEditorSettings.mEnableFileRecovery != .Yes) && (!mDisabled)) + if ((gApp.mSettings.mEditorSettings.mEnableFileRecovery != .Yes) || (mDisabled)) return; mWantWorkspaceCleanup = true;