diff --git a/Libs/DF/buildmenu.lua b/Libs/DF/buildmenu.lua index c75f916c..ebf4bed1 100644 --- a/Libs/DF/buildmenu.lua +++ b/Libs/DF/buildmenu.lua @@ -107,7 +107,7 @@ local onWidgetSetInUse = function(widget, widgetTable) if (widgetTable.disabled) then widget:Disable() else - if (not widget:IsEnabled()) then + if (widget.IsEnabled and not widget:IsEnabled()) then widget:Enable() end end diff --git a/Libs/DF/fw.lua b/Libs/DF/fw.lua index 23cb77db..ddd6d06a 100644 --- a/Libs/DF/fw.lua +++ b/Libs/DF/fw.lua @@ -1,6 +1,6 @@ -local dversion = 531 +local dversion = 532 local major, minor = "DetailsFramework-1.0", dversion local DF, oldminor = LibStub:NewLibrary(major, minor) diff --git a/boot.lua b/boot.lua index 6cf63886..732afece 100644 --- a/boot.lua +++ b/boot.lua @@ -18,8 +18,8 @@ local addonName, Details222 = ... local version, build, date, tocversion = GetBuildInfo() - Details.build_counter = 12650 - Details.alpha_build_counter = 12650 --if this is higher than the regular counter, use it instead + Details.build_counter = 12651 + Details.alpha_build_counter = 12651 --if this is higher than the regular counter, use it instead Details.dont_open_news = true Details.game_version = version Details.userversion = version .. " " .. Details.build_counter