notes for Cataclysm Classic 4.4.1

Look for the following comments in the files changed

 -- changed for Cata 
 -- removed for Cata 
 -- added for Cata 

---------------------------------------------------------------------------------------------------------

ButtonForge.toc

---- Updated with
## Interface: 40401
## Title: Button Forge |cff69ccf0(Classic-Cata)|r
## Version: 1.0.23-classic-Cata
## Author: Massiner of Nathrezim, Albirew, Sunnova

---------------------------------------------------------------------------------------------------------

Const.lua

changed from:

Const.VersionMinor			= 0.22;

to:

Const.VersionMinor			= 0.23;   -- changed for Cata 4.4.1 09/03/2024


---------------------------------------------------------------------------------------------------------

copy UILibConfigPage.xml from retail ButtonForge

---------------------------------------------------------------------------------------------------------

Button.lua

changed from:

--[[--------------------------------------------------------------------------
	Tidy up the display state for a button (does not include the icon itself)
----------------------------------------------------------------------------]]

to:

local function GetMouseFocus() -- added for Cata 4.4.1 09/05/2024, copied from retail BF
	local t = GetMouseFoci()
	return t[1]
end

--[[--------------------------------------------------------------------------
	Tidy up the display state for a button (does not include the icon itself)
----------------------------------------------------------------------------]]


---------------------------------------------------------------------------------------------------------

UILibToolbar.lua

changed from:

function UILib.ToggleRightClickSelfCast(Value)

to:

local function GetMouseFocus() -- added for Cata 4.4.1 09/05/2024, copied from retail BF
	local t = GetMouseFoci()
	return t[1]
end

function UILib.ToggleRightClickSelfCast(Value)

---------------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------