mirror of
https://github.com/brues-code/pfUI.git
synced 2026-09-25 00:56:02 +00:00
nameplates: fix mouse buttons for vanilla
This commit is contained in:
@@ -633,10 +633,9 @@ pfUI:RegisterModule("nameplates", "vanilla:tbc", function ()
|
||||
end
|
||||
|
||||
-- disable click events while spell is targeting
|
||||
if C.nameplates["clickthrough"] == "1" or SpellIsTargeting() then
|
||||
this.nameplate:EnableMouse(false)
|
||||
else
|
||||
this.nameplate:EnableMouse(true)
|
||||
local mouseEnabled = this.nameplate:IsMouseEnabled()
|
||||
if C.nameplates["clickthrough"] == "0" and ( C.nameplates["overlap"] == "1" or C.nameplates["rightclick"] == "1" ) and SpellIsTargeting() == mouseEnabled then
|
||||
this.nameplate:EnableMouse(not mouseEnabled)
|
||||
end
|
||||
|
||||
hookOnUpdate(self)
|
||||
|
||||
Reference in New Issue
Block a user