Reload plugins when change in settings + fix scaling

This commit is contained in:
Aireil 2021-01-25 01:06:41 +01:00
parent b1b6621c2a
commit 5f9191ff20
4 changed files with 44 additions and 33 deletions

View file

@ -9,5 +9,12 @@ namespace Dalamud.Configuration
class ThirdRepoSetting {
public string Url { get; set; }
public bool IsEnabled { get;set; }
public ThirdRepoSetting Clone() {
return new ThirdRepoSetting {
Url = this.Url,
IsEnabled = this.IsEnabled
};
}
}
}