Added a config to not auto change to standard mode on startup.
This commit is contained in:
@@ -1205,6 +1205,8 @@ local default_global_data = {
|
|||||||
encounter_journal_cache = {}, --store a dump of the encounter journal
|
encounter_journal_cache = {}, --store a dump of the encounter journal
|
||||||
installed_skins_cache = {},
|
installed_skins_cache = {},
|
||||||
|
|
||||||
|
auto_change_to_standard = true,
|
||||||
|
|
||||||
debug_options_panel = {
|
debug_options_panel = {
|
||||||
scaletable = {scale = 1},
|
scaletable = {scale = 1},
|
||||||
position = {},
|
position = {},
|
||||||
|
|||||||
+3
-3
@@ -178,9 +178,9 @@ function Details222.StartUp.StartMeUp()
|
|||||||
for id = 1, Details:GetNumInstances() do
|
for id = 1, Details:GetNumInstances() do
|
||||||
local instance = Details:GetInstance(id)
|
local instance = Details:GetInstance(id)
|
||||||
if (instance:IsEnabled()) then
|
if (instance:IsEnabled()) then
|
||||||
if (instance.modo == 3) then --everything
|
if (instance.modo == 3 and Details.auto_change_to_standard) then --everything
|
||||||
instance.LastModo = 2 --standard
|
instance.LastModo = 2 --standard
|
||||||
instance.modo = 2 --standard
|
instance.modo = 2 --standard
|
||||||
end
|
end
|
||||||
|
|
||||||
--refresh wallpaper
|
--refresh wallpaper
|
||||||
|
|||||||
Reference in New Issue
Block a user