Hi there,
Sorry for the noob question, but i've tried to change the autosave timer, and it's still saving each five minutes...
Thanks in advance for any help!

private static readonly TimeSpan m_Delay = Config.Get("AutoSave.Frequency", TimeSpan.FromMinutes(30.0));
private static readonly TimeSpan m_Warning = Config.Get("AutoSave.WarningTime", TimeSpan.Zero);
 
Change the value in the config file.
Changing the default values in the CS files won't work unless the entry in the config is either missing or commented out.
 
Back