Fix moving of actions

This commit is contained in:
Hendrik Leppkes
2008-11-09 15:10:08 +01:00
parent 15f27066ec
commit 170b8253cd
+4 -4
View File
@@ -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