Make 'General::Debug' setting r/w from runtime

Signed-off-by: Lucca Jiménez Könings <development@jimkoen.com>
This commit is contained in:
Lucca Jiménez Könings 2024-05-07 13:04:34 +02:00
parent d6b78b9683
commit 37109ae3f1

View File

@ -123,7 +123,7 @@ struct Settings {
{ { "General", "MaxCars" }, { General_MaxCars, write } }, { { "General", "MaxCars" }, { General_MaxCars, write } },
{ { "General", "LogChat" }, { General_LogChat, read } }, { { "General", "LogChat" }, { General_LogChat, read } },
{ { "General", "ResourceFolder" }, { General_ResourceFolder, read } }, { { "General", "ResourceFolder" }, { General_ResourceFolder, read } },
{ { "General", "Debug" }, { General_Debug, noaccess } }, { { "General", "Debug" }, { General_Debug, write } },
{ { "Misc", "SendErrorsShowMessage" }, { Misc_SendErrorsShowMessage, noaccess } }, { { "Misc", "SendErrorsShowMessage" }, { Misc_SendErrorsShowMessage, noaccess } },
{ { "Misc", "SendErrors" }, { Misc_SendErrors, noaccess } }, { { "Misc", "SendErrors" }, { Misc_SendErrors, noaccess } },
{ { "Misc", "ImScaredOfUpdates" }, { Misc_ImScaredOfUpdates, noaccess } } { { "Misc", "ImScaredOfUpdates" }, { Misc_ImScaredOfUpdates, noaccess } }