Skip to content

Commit

Permalink
- DF lib update
Browse files Browse the repository at this point in the history
  • Loading branch information
cont1nuity committed Jan 18, 2024
1 parent 2b428c7 commit 7bc947f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions Plater_ChangeLog.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ function Plater.GetChangelogTable()
if (not Plater.ChangeLogTable) then
Plater.ChangeLogTable = {

{1705431310, "Bug Fix", "January 18th, 2024", "Fixing Mod Load Conditions panel.", "cont1nuity"},
{1705431310, "Backend Change", "January 13th, 2024", "DetailsFramework updates.", "Terciob"},
{1705431310, "Backend Change", "January 12th, 2024", "Updates for future deprecated API.", "cont1nuity"},
{1705431310, "Bug Fix", "January 12th, 2024", "Improvements to Auto toggle feature to mitigate some errors and sizing issues.", "cont1nuity"},
Expand Down
2 changes: 1 addition & 1 deletion libs/DF/fw.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


local dversion = 504
local dversion = 505
local major, minor = "DetailsFramework-1.0", dversion
local DF, oldminor = LibStub:NewLibrary(major, minor)

Expand Down
6 changes: 3 additions & 3 deletions libs/DF/panel.lua
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ local default_framelayout_options = {
offset_x = 100,
use__width = false, --__width from the widget
offset_y = 20,
width = 0, --if bigger than 0, it will set the value
width = 1,
min_width = 0,
height = 0,
height = 1,
break_if_hidden = true, --stop if encounters a hidden frame
}

Expand Down Expand Up @@ -4221,7 +4221,7 @@ detailsFramework.RadioGroupCoreFunctions = {
if (optionTable.mask) then
checkbox.Icon:SetMask(optionTable.mask)
else
checkbox.Icon:SetMask(nil)
checkbox.Icon:SetMask("")
end
else
checkbox.Icon:SetTexture("")
Expand Down

0 comments on commit 7bc947f

Please sign in to comment.