Disable autosave when not in EditMode_Full to make sure it doesn't do anything in practice mode.
This commit is contained in:
@@ -4420,6 +4420,12 @@ void ScreenEdit::HandleScreenMessage( const ScreenMessage SM )
|
|||||||
|
|
||||||
void ScreenEdit::SetDirty(bool dirty)
|
void ScreenEdit::SetDirty(bool dirty)
|
||||||
{
|
{
|
||||||
|
if(EDIT_MODE.GetValue() != EditMode_Full)
|
||||||
|
{
|
||||||
|
m_dirty= false;
|
||||||
|
m_next_autosave_time= -1.0f;
|
||||||
|
return;
|
||||||
|
}
|
||||||
if(dirty)
|
if(dirty)
|
||||||
{
|
{
|
||||||
if(!m_dirty)
|
if(!m_dirty)
|
||||||
|
|||||||
Reference in New Issue
Block a user