🧼 PowerToys Awake (#11593)

* Scrubbing name conventions

* Fix naming for projects

* Fix folder naming

* More folder cleanup

* More left-over file changes

* Reverting LCL files, because these will be handled by the loc team

* Remove legacy file that is no longer used.

* Update latest
This commit is contained in:
Den Delimarsky
2021-06-09 09:13:58 -07:00
committed by GitHub
parent c9c54b7780
commit c5e464a704
49 changed files with 272 additions and 271 deletions

View File

@@ -143,18 +143,18 @@ namespace Microsoft.PowerToys.Settings.UI.Library
}
}
private bool espresso;
private bool awake;
[JsonPropertyName("Espresso")]
public bool Espresso
[JsonPropertyName("Awake")]
public bool Awake
{
get => espresso;
get => awake;
set
{
if (espresso != value)
if (awake != value)
{
LogTelemetryEvent(value);
espresso = value;
awake = value;
}
}
}