diff --git a/ElvUI_OptionsUI/ActionBars.lua b/ElvUI_OptionsUI/ActionBars.lua index 0373db6..a7f087d 100644 --- a/ElvUI_OptionsUI/ActionBars.lua +++ b/ElvUI_OptionsUI/ActionBars.lua @@ -907,7 +907,8 @@ local function BuildABConfig() type = "range", name = L["Button Size"], desc = L["The size of the action buttons."], - min = 15, max = 60, step = 1, + min = 15, softMax = 60, max = 150, step = 1, + disabled = function() return not E.db.actionbar["bar"..i].enabled end }, buttonspacing = { @@ -1130,4 +1131,4 @@ E.Options.args.actionbar = { } } group = E.Options.args.actionbar.args -BuildABConfig() \ No newline at end of file +BuildABConfig() diff --git a/ElvUI_OptionsUI/Maps.lua b/ElvUI_OptionsUI/Maps.lua index 0a00649..f0348c0 100644 --- a/ElvUI_OptionsUI/Maps.lua +++ b/ElvUI_OptionsUI/Maps.lua @@ -196,7 +196,8 @@ E.Options.args.maps = { type = "range", name = L["Size"], desc = L["Adjust the size of the minimap."], - min = 120, max = 250, step = 1, + min = 50, max = 600, step = 1, + softMin = 120, softMax = 250, get = function(info) return E.db.general.minimap[info[#info]] end, set = function(info, value) E.db.general.minimap[info[#info]] = value MM:UpdateSettings() end, disabled = function() return not E.private.general.minimap.enable end