From 170b8253cdcc4551cf1a5956138b35edb23763f7 Mon Sep 17 00:00:00 2001 From: Hendrik Leppkes Date: Sun, 9 Nov 2008 15:10:08 +0100 Subject: [PATCH] Fix moving of actions --- ActionButton.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ActionButton.lua b/ActionButton.lua index ad7fd13..b76acc0 100644 --- a/ActionButton.lua +++ b/ActionButton.lua @@ -131,8 +131,8 @@ function onDragStart(self) if InCombatLockdown() then return end if not Bartender4.db.profile.buttonlock or IsModifiedClick("PICKUPACTION") then PickupAction(self.action) - self:UpdateState() - self:UpdateFlash() + ActionButton_UpdateState(self) + ActionButton_UpdateFlash(self) self:RefreshStateAction() end end @@ -140,8 +140,8 @@ end function onReceiveDrag(self) if InCombatLockdown() then return end PlaceAction(self.action) - self:UpdateState() - self:UpdateFlash() + ActionButton_UpdateState(self) + ActionButton_UpdateFlash(self) self:RefreshStateAction() end