add auto download feature
This commit is contained in:
parent
3f925ee17a
commit
b9e7aac55f
7 changed files with 45 additions and 3 deletions
|
@ -91,5 +91,15 @@ namespace EnvyUpdate
|
|||
|
||||
Debug.LogToFile("INFO Switched to EXE directory.");
|
||||
}
|
||||
|
||||
private void chkAutodl_Checked(object sender, RoutedEventArgs e)
|
||||
{
|
||||
GlobalVars.autoDownload = true;
|
||||
}
|
||||
|
||||
private void chkAutodl_Unchecked(object sender, RoutedEventArgs e)
|
||||
{
|
||||
GlobalVars.autoDownload = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue