Skip to content

Commit

Permalink
bg fixes and combat
Browse files Browse the repository at this point in the history
  • Loading branch information
blooblahguy committed Feb 2, 2019
1 parent ce5024c commit 82ab768
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions core/config_defaults.lua
Original file line number Diff line number Diff line change
Expand Up @@ -889,6 +889,10 @@ shared:Register("border", "bdShadow", bdCore.media.shadow)
type = "tab",
value = "Viewports"
}}
bdCore.general[#bdCore.general+1] = {text = {
type = "text",
value = "Personal recommendation: a 60px viewport at the top and bottom of your screen can mimic an extended camera zoom distance.",
}}
bdCore.general[#bdCore.general+1] = {topViewport = {
type = "slider",
value = 0,
Expand All @@ -901,7 +905,7 @@ shared:Register("border", "bdShadow", bdCore.media.shadow)

bdCore.general[#bdCore.general+1] = {topViewportBGColor={
type="color",
value = {.11,.15,.18, 1},
value = {.09,.1,.13, 1},
name="Top Viewport Color",
callback = function() bdCore:triggerEvent("bdcore_redraw") end
}}
Expand All @@ -918,7 +922,7 @@ shared:Register("border", "bdShadow", bdCore.media.shadow)

bdCore.general[#bdCore.general+1] = {bottomViewportBGColor={
type="color",
value = {.11,.15,.18, 1},
value = {.09,.1,.13, 1},
name="Bottom Viewport Color",
callback = function() bdCore:triggerEvent("bdcore_redraw") end
}}
Expand Down
2 changes: 1 addition & 1 deletion core/media_functions.lua
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ function bdCore:RGBPercToHex(r, g, b)
end

-- make it purdy
function bdCore:setBackdrop(frame,resize)
function bdCore:setBackdrop(frame, resize)
if (frame.background) then return end


Expand Down
2 changes: 1 addition & 1 deletion lib/bdConfigLib1.0.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1409,7 +1409,7 @@ do
local profile_settings = {}
profile_settings[#profile_settings+1] = {intro = {
type = "text",
value = "You can use profiles to store configuration per character and spec automatically, or save templates to use when needed."
value = "You can use profiles to store configuration per character and spec automatically, or save templates to use when needed. Changing profiles may require a UI reload."
}}
-- create new profile
profile_settings[#profile_settings+1] = {createprofile = {
Expand Down

0 comments on commit 82ab768

Please sign in to comment.