1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Properly allow recovery disabling

This commit is contained in:
Brian Fiete 2022-02-08 10:30:59 -05:00
parent 6d4e09cf13
commit dcafa5f9ca

View file

@ -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;