Merge branch 'main' into feat/colors

This commit is contained in:
quenousimporte 2023-09-27 09:09:29 +02:00
commit efceae4f4c
1 changed files with 12 additions and 9 deletions

View File

@ -964,6 +964,8 @@ function editsetting(name)
if (type != "undefined")
{
value = prompt(name, value);
if (value !== null)
{
if (type == "number")
{
value = parseInt(value);
@ -977,6 +979,7 @@ function editsetting(name)
loadsettings();
}
}
}
}
function changesetting()