config: use modern profile as default

This commit is contained in:
shagu
2023-11-03 15:13:20 +01:00
parent 17ebeb7dc9
commit e7f8a2e0be
2 changed files with 7 additions and 2 deletions
+2 -2
View File
@@ -1474,7 +1474,7 @@ pfUI:RegisterModule("gui", "vanilla:tbc", function ()
CreateQuestionDialog(T["Do you really want to reset |cffffaaaaEVERYTHING|r?\n\nThis will reset:\n - Current Configuration\n - Current Frame Positions\n - Firstrun Wizard\n - Addon Cache\n - Saved Profiles"],
function()
_G["pfUI_init"] = {}
_G["pfUI_config"] = {}
_G["pfUI_config"] = pfUI.api.CopyTable(pfUI_profiles["Modern"])
_G["pfUI_playerDB"] = {}
_G["pfUI_profiles"] = {}
_G["pfUI_cache"] = {}
@@ -1487,7 +1487,7 @@ pfUI:RegisterModule("gui", "vanilla:tbc", function ()
CreateConfig(nil, T["Configuration"], C.global, "profile", "button", function()
CreateQuestionDialog(T["Do you really want to reset your configuration?\nThis also includes frame positions"],
function()
_G["pfUI_config"] = {}
_G["pfUI_config"] = pfUI.api.CopyTable(pfUI_profiles["Modern"])
_G["pfUI_init"] = {}
pfUI:LoadConfig()
this:GetParent():Hide()
+5
View File
@@ -300,6 +300,11 @@ pfUI:SetScript("OnEvent", function()
pfUI.version.fix = tonumber(fix) or 0
pfUI.version.string = pfUI.version.major .. "." .. pfUI.version.minor .. "." .. pfUI.version.fix
-- use "Modern" as default profile on a fresh install
if pfUI.api.isempty(pfUI_init) and pfUI.api.isempty(pfUI_config) then
pfUI_config = pfUI.api.CopyTable(pfUI_profiles["Modern"])
end
pfUI:LoadConfig()
pfUI:MigrateConfig()
pfUI:UpdateFonts()