Removed unused option to retain aax files.

This commit is contained in:
Michael Bucari-Tovo 2021-06-28 11:24:33 -06:00
parent 258887152d
commit d564876eaa

View File

@ -83,13 +83,6 @@ namespace FileManager
set => persistentDictionary.Set(nameof(DecryptInProgressEnum), value); set => persistentDictionary.Set(nameof(DecryptInProgressEnum), value);
} }
[Description("Retain .aax files after decrypting?")]
public bool RetainAaxFiles
{
get => persistentDictionary.Get<bool>(nameof(RetainAaxFiles));
set => persistentDictionary.Set(nameof(RetainAaxFiles), value);
}
// note: any potential file manager static ctors can't compensate if storage dir is changed at run time via settings. this is partly bad architecture. but the side effect is desirable. if changing LibationFiles location: restart app // note: any potential file manager static ctors can't compensate if storage dir is changed at run time via settings. this is partly bad architecture. but the side effect is desirable. if changing LibationFiles location: restart app
// singleton stuff // singleton stuff