Thread: SuperInspect
View Single Post
06-21-06, 01:31 PM   #18
Reolin
A Deviate Faerie Dragon
 
Reolin's Avatar
Join Date: Jul 2005
Posts: 10
1. Go to Interface/AddOns/SuperInspect_UI/ and open the SuperInspect_UI.xml file.

2. Do a search for "GameTooltip", until you find a line that looks like:
Code:
<GameTooltip name="SuperInspect_TT" frameStrata="TOOLTIP" hidden="true"  inherits="GameTooltipTemplate"/>
3. Change this section to:
Code:
<GameTooltip name="SuperInspect_TT" frameStrata="TOOLTIP" hidden="true" clampedToScreen="false" inherits="GameTooltipTemplate">
		<Scripts>
			<OnLoad>
				GameTooltip_OnLoad();
				this:SetOwner(WorldFrame, "ANCHOR_NONE"); <!--this:SetOwner(UIParent, "ANCHOR_RIGHT"); (old code)-->
			</OnLoad>
		</Scripts>
	</GameTooltip>
  Reply With Quote