Added config entry in advancedSettings to disable initial login prompt

This commit is contained in:
CrushedPixel
2015-09-06 18:35:15 +02:00
parent 1e06d3f1c9
commit a56d800d43
2 changed files with 4 additions and 2 deletions
@@ -258,7 +258,8 @@ public class ReplaySettings {
public enum AdvancedOptions implements ValueEnum {
recordingPath("./replay_recordings/", ""),
renderPath("./replay_videos/", ""),
downloadPath("./replay_downloads", "");
downloadPath("./replay_downloads", ""),
disableLoginPrompt(false, "");
private Object value;
private String name;