From 1c9b5337a5506bee366c88f49fc920a504ff1926 Mon Sep 17 00:00:00 2001 From: Repooc Date: Sun, 9 Mar 2014 15:35:57 -0400 Subject: [PATCH] Change minimum width/height on background panels. --- ElvUI_SLE/modules/backgrounds/options.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ElvUI_SLE/modules/backgrounds/options.lua b/ElvUI_SLE/modules/backgrounds/options.lua index 1ebd798..7dae5d2 100755 --- a/ElvUI_SLE/modules/backgrounds/options.lua +++ b/ElvUI_SLE/modules/backgrounds/options.lua @@ -92,7 +92,7 @@ for k,v in pairs(drop) do type = "range", name = L['Width'], desc = L["Sets width of the frame"], - min = v[3], max = E.screenwidth, step = 1, + min = 50, max = E.screenwidth, step = 1, set = function(info, value) E.db.sle.backgrounds[v[1]].width = value; BG:FramesSize() end, }, height = { @@ -100,7 +100,7 @@ for k,v in pairs(drop) do type = "range", name = L['Height'], desc = L["Sets height of the frame"], - min = 50, max = E.screenheight/2, step = 1, + min = 30, max = E.screenheight/2, step = 1, set = function(info, value) E.db.sle.backgrounds[v[1]].height = value; BG:FramesSize() end, }, spacer = { --Empty slot for making sliders move to next line -- 1.7.9.5