Help with Addon Update

The developer has stopped supporting this add-on. Could you tell me what needs to be fixed to make it work?

https://www.curseforge.com/wow/addons/clickthroughactionbars

I don’t use the addon and you didn’t say what is not working so I didn’t take much of a look beyond the first problem I found. It seems the OnUpdate script is being removed at some point so the checkbox doesn’t display in the config. frame.

Try removing:

EditModeSystemSettingsDialog:SetScript("OnUpdate", 
	function()
		LoadCB()
	end)

and replace it with:

hooksecurefunc(EditModeSystemSettingsDialog.Title, "SetText", LoadCB)

Also, in the line:

Settings.cb:SetPoint('BOTTOMLEFT', Settings, -5, -3)

You might have to adjust the vertical placement (-3) of the checkbox by changing it too something like this to push it lower:

Settings.cb:SetPoint('BOTTOMLEFT', Settings, -5, -20)

Adjust the -20 to where it’s not covering something else.

2 Likes

Insane!!! Its works!!!

Thank you so much :heart_eyes: