mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2024-12-20 17:01:47 +03:00
Fix checkbox not updating config
if valueChanged was a function Configs.set would not update the config
This commit is contained in:
parent
206221ebac
commit
0c752de182
1 changed files with 2 additions and 2 deletions
|
@ -16,12 +16,12 @@
|
|||
|
||||
Configs.get(prop).then((value) => active = value as boolean);
|
||||
|
||||
function updateCheckbox()
|
||||
async function updateCheckbox()
|
||||
{
|
||||
active = !active;
|
||||
|
||||
if (prop)
|
||||
Configs.set(prop, active);
|
||||
await Configs.set(prop, active);
|
||||
|
||||
if (valueChanged)
|
||||
valueChanged(active);
|
||||
|
|
Loading…
Reference in a new issue