From c00ccc06752a1db5845eedc9a384c1e06d511e01 Mon Sep 17 00:00:00 2001 From: Scott Sibley Date: Mon, 4 Jul 2011 08:05:15 +0000 Subject: [PATCH] Stop restricting repositioning only when the cursor moves. That causes issues with clamping. --- Modules/Position/Position.lua | 3 --- 1 file changed, 3 deletions(-) diff --git a/Modules/Position/Position.lua b/Modules/Position/Position.lua index 2ec28ac..f6f9134 100644 --- a/Modules/Position/Position.lua +++ b/Modules/Position/Position.lua @@ -398,11 +398,8 @@ local positionTooltip = function() end -local oldX, oldY local positionMainTooltip = function() local x, y = GetCursorPosition() - if oldX == x and oldY == y then return end - oldX, oldY = x, y local index = getIndex(UIParent) local currentAnchor = StarTip.opposites[StarTip.anchors[index]:sub(8)] -- 1.7.9.5