mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-14 03:47:43 +01:00
chore: change settings key again
This commit is contained in:
parent
b8de19c7e9
commit
92455c4c64
3 changed files with 4 additions and 4 deletions
|
|
@ -290,7 +290,7 @@ namespace Dalamud.Configuration.Internal
|
|||
/// </summary>
|
||||
public bool ShowTsm { get; set; } = true;
|
||||
|
||||
public bool? Fools22New { get; set; } = false;
|
||||
public bool? Fools22Newer { get; set; } = false;
|
||||
|
||||
/// <summary>
|
||||
/// Load a configuration from the provided path.
|
||||
|
|
|
|||
|
|
@ -324,7 +324,7 @@ public class Fools22 : IDisposable
|
|||
{
|
||||
var config = Service<DalamudConfiguration>.Get();
|
||||
|
||||
if (!(config.Fools22New ?? true))
|
||||
if (!(config.Fools22Newer ?? true))
|
||||
return false;
|
||||
|
||||
if (!(DateTime.Now.Month == 4 && DateTime.Now.Day == 1))
|
||||
|
|
|
|||
|
|
@ -175,7 +175,7 @@ namespace Dalamud.Interface.Internal.Windows
|
|||
this.dtrOrder = configuration.DtrOrder;
|
||||
this.dtrIgnore = configuration.DtrIgnore;
|
||||
|
||||
this.doFools22 = configuration.Fools22New ?? true;
|
||||
this.doFools22 = configuration.Fools22Newer ?? true;
|
||||
}
|
||||
|
||||
/// <inheritdoc/>
|
||||
|
|
@ -853,7 +853,7 @@ namespace Dalamud.Interface.Internal.Windows
|
|||
configuration.IsFocusManagementEnabled = this.doFocus;
|
||||
configuration.ShowTsm = this.doTsm;
|
||||
|
||||
configuration.Fools22New = this.doFools22;
|
||||
configuration.Fools22Newer = this.doFools22;
|
||||
|
||||
configuration.UseAxisFontsFromGame = this.doUseAxisFontsFromGame;
|
||||
configuration.FontGamma = this.fontGamma;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue