mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-29 20:03:41 +01:00
Reload plugins when change in settings + fix scaling
This commit is contained in:
parent
b1b6621c2a
commit
5f9191ff20
4 changed files with 44 additions and 33 deletions
|
|
@ -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
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue