<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0">
	<channel>
		<title>Seerah's Portal - Bug Comments (wowinterface.com)</title>
		<link>http://www.wowinterface.com</link>
		<description>World of Warcraft Interfaces, Skins, Addons, Mods community.</description>
		<language>en</language>
		<generator>WoWInterface</generator>
		<ttl>30</ttl>
		<copyright>Copyright 2006, WoWInterface</copyright>
		<image>
			<url>http://s.wowinterface.com/images/style_mmoi_wowi2/misc/rss.jpg</url>
			<title>WoWInterface</title>
			<link>http://www.wowinterface.com</link>
		</image>
		<webMaster>no-reply@WoWInterface</webMaster>
				<item>
			<title>Error when creating first set - Testing this is a bit of...</title>
			<link>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=6239#cmnt_8849</link>
			<description><![CDATA[Testing this is a bit of pain.. you need to keep rolling new alts so you have a blank slate :) But I think I've seen similar errors lately, I'll try to capture them.

(Interface: EventEquip | Bug: Error when creating first set)]]></description>
			<author>forty2j</author>
			<guid>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=6239#cmnt_8849</guid>
			<pubDate>Thu, 19 Nov 2009 15:24:16 +0000</pubDate>
		</item>		<item>
			<title>Error when creating first set - Can you get the error...</title>
			<link>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=6239#cmnt_8833</link>
			<description><![CDATA[Can you get the error for me, and also try without Broker EquipmentManager enabled?

(Interface: EventEquip | Bug: Error when creating first set)]]></description>
			<author>Seerah</author>
			<guid>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=6239#cmnt_8833</guid>
			<pubDate>Thu, 12 Nov 2009 15:30:45 +0000</pubDate>
		</item>		<item>
			<title>Player talents repeat (spam-like) in tooltip when moused over player in Grid - Cool. :)  Thanks.</title>
			<link>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=5131#cmnt_8801</link>
			<description><![CDATA[Cool. :)  Thanks.

(Interface: TipTop | Bug: Player talents repeat (spam-like) in tooltip when moused over player in Grid)]]></description>
			<author>Seerah</author>
			<guid>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=5131#cmnt_8801</guid>
			<pubDate>Mon, 19 Oct 2009 01:20:15 +0000</pubDate>
		</item>		<item>
			<title>Player talents repeat (spam-like) in tooltip when moused over player in Grid - Raided today, issue...</title>
			<link>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=5131#cmnt_8800</link>
			<description><![CDATA[Raided today, issue seems to be gone. Yey :)

(Interface: TipTop | Bug: Player talents repeat (spam-like) in tooltip when moused over player in Grid)]]></description>
			<author>mojosdojo</author>
			<guid>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=5131#cmnt_8800</guid>
			<pubDate>Mon, 19 Oct 2009 01:16:25 +0000</pubDate>
		</item>		<item>
			<title>Player talents repeat (spam-like) in tooltip when moused over player in Grid - At a first glance, it...</title>
			<link>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=5131#cmnt_8797</link>
			<description><![CDATA[At a first glance, it seems to work. Tested it in some bgs and excessively hovered Grid, just got normal one-line talent tooltips.

(Interface: TipTop | Bug: Player talents repeat (spam-like) in tooltip when moused over player in Grid)]]></description>
			<author>mojosdojo</author>
			<guid>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=5131#cmnt_8797</guid>
			<pubDate>Thu, 15 Oct 2009 14:28:57 +0000</pubDate>
		</item>		<item>
			<title>Player talents repeat (spam-like) in tooltip when moused over player in Grid - Okay, I see what I...</title>
			<link>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=5131#cmnt_8796</link>
			<description><![CDATA[Okay, I see what I removed now. I must have forgotten why I had it in there in the first place, and I took it out trying to optimize the code. Why don't you guys change this in your code and let me know if it clears everything up for you.

Really, still, I don't think I should *need* this in there, but... I wish it didn't have to be added, because I'd like to keep tooltip scanning to a bare minimum for performance and update time. Anyway...

Find the TalentQuery() function in the tiptop.lua file and change the whole section to this:
local function TalentQuery()	send request for talent info
	if CanInspect(&quot;mouseover&quot;) and db.showTalentText then
		if UnitName(&quot;mouseover&quot;) ~= player and UnitLevel(&quot;mouseover&quot;) &gt; 9 then
			local talentline = nil
			for i=1, tt:NumLines() do
				local left, leftText
				left = _G
				leftText = left:GetText()
				if leftText  &quot;Talents:&quot; then
					talentline = 1
				end
			end
			if not talentline then
				if InspectFrame and InspectFrame:IsShown() then	to not step on default UI's toes
					tt:AddDoubleLine(&quot;Talents:&quot;, &quot;Inspect Frame is open&quot;, nil,nil,nil, 1,0,0)
				elseif Examiner and Examiner:IsShown() then		same thing with Examiner
					tt:AddDoubleLine(&quot;Talents:&quot;, &quot;Examiner frame is open&quot;, nil,nil,nil, 1,0,0)
				else
					NotifyInspect(&quot;mouseover&quot;)
					TipTop:RegisterEvent(&quot;INSPECT_TALENT_READY&quot;)
					tt:AddDoubleLine(&quot;Talents:&quot;, &quot;...&quot;)	adds the Talents line with a placeholder for info
				end
				tt:Show()
			end
		end
	end
end

(Interface: TipTop | Bug: Player talents repeat (spam-like) in tooltip when moused over player in Grid)]]></description>
			<author>Seerah</author>
			<guid>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=5131#cmnt_8796</guid>
			<pubDate>Thu, 15 Oct 2009 02:40:42 +0000</pubDate>
		</item>		<item>
			<title>Player talents repeat (spam-like) in tooltip when moused over player in Grid - I won't forget about...</title>
			<link>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=5131#cmnt_8791</link>
			<description><![CDATA[I won't forget about this, and I'll look back at 1.9.x to see what I could have possibly changed to make 2.0 do this...  (since a couple of you mentioned that it started with that - I forgot that detail in my earlier rant)  Will do that when I get home from work tonight.

(Interface: TipTop | Bug: Player talents repeat (spam-like) in tooltip when moused over player in Grid)]]></description>
			<author>Seerah</author>
			<guid>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=5131#cmnt_8791</guid>
			<pubDate>Wed, 14 Oct 2009 21:42:37 +0000</pubDate>
		</item>		<item>
			<title>Player talents repeat (spam-like) in tooltip when moused over player in Grid - I also have exactly the...</title>
			<link>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=5131#cmnt_8790</link>
			<description><![CDATA[I also have exactly the same issue since 2.0. I do not use Grid. I use ouf with ouf_caellian as layout, and on my healer alt I use Vuhdo. I have had enormously huge tooltips mousing over totems, with talent spam in it. :O

(Interface: TipTop | Bug: Player talents repeat (spam-like) in tooltip when moused over player in Grid)]]></description>
			<author>astalavista</author>
			<guid>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=5131#cmnt_8790</guid>
			<pubDate>Wed, 14 Oct 2009 20:29:08 +0000</pubDate>
		</item>		<item>
			<title>Player talents repeat (spam-like) in tooltip when moused over player in Grid - (/sigh - need an edit...</title>
			<link>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=5131#cmnt_8789</link>
			<description><![CDATA[(/sigh - need an edit button)

Obviously, this is an addon conflict.  I would have heard about it on a scale tenfold if it were affecting all users with all raid frames (including myself and my hubby/friends).

But without knowing the exact cause, I can only guess at what the problem is.  Only guess at what might fix it.  It may work, it may not.  I'd be spending countless hours debugging something that I don't see and don't know what causes it.  And I'd be putting in hacks and bandaids for something that only affect a small portion of users.

Without more info, my hands are tied atm.

(Interface: TipTop | Bug: Player talents repeat (spam-like) in tooltip when moused over player in Grid)]]></description>
			<author>Seerah</author>
			<guid>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=5131#cmnt_8789</guid>
			<pubDate>Wed, 14 Oct 2009 20:12:36 +0000</pubDate>
		</item>		<item>
			<title>Player talents repeat (spam-like) in tooltip when moused over player in Grid - I still have NO clue why...</title>
			<link>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=5131#cmnt_8788</link>
			<description><![CDATA[I still have NO clue why you guys get this...  The way TipTop works wrt talent text is this:

1. you mouseover a unit that is &gt;= lvl 10
2. TipTop does NotifyInspect() and asks for info
3. TipTop adds the &quot;Talents:    ...&quot; line to the tooltip
4. The game tells TipTop that the inspection is ready for viewing
5. TipTop gathers the info and sorts it
6. TipTop scans the tooltip to find the line already created in #3
7. TipTop only changes the right side of that line (the ...) and doesn't create a new one

Seriously, I'm at a loss.  Anyone feel like trying it with only TipTop enabled? :p

(Interface: TipTop | Bug: Player talents repeat (spam-like) in tooltip when moused over player in Grid)]]></description>
			<author>Seerah</author>
			<guid>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=5131#cmnt_8788</guid>
			<pubDate>Wed, 14 Oct 2009 20:08:24 +0000</pubDate>
		</item>		<item>
			<title>Player talents repeat (spam-like) in tooltip when moused over player in Grid - This happens with...</title>
			<link>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=5131#cmnt_8787</link>
			<description><![CDATA[This happens with raid/healing frame addon &quot;VuhDo&quot;, so its not just a Grid issue. You can disable 'showing talent spec' in TipTop until the issue is resolved. That's what I do when I raid.

(Interface: TipTop | Bug: Player talents repeat (spam-like) in tooltip when moused over player in Grid)]]></description>
			<author>ARJTPA</author>
			<guid>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=5131#cmnt_8787</guid>
			<pubDate>Wed, 14 Oct 2009 19:50:14 +0000</pubDate>
		</item>		<item>
			<title>Elite Graphic - ah, oops.  Thanks :)</title>
			<link>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=6190#cmnt_8783</link>
			<description><![CDATA[ah, oops.  Thanks :)

(Interface: TipTop | Bug: Elite Graphic)]]></description>
			<author>Seerah</author>
			<guid>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=6190#cmnt_8783</guid>
			<pubDate>Wed, 14 Oct 2009 15:53:58 +0000</pubDate>
		</item>		<item>
			<title>Divide by zero leading to units with infinite health %s. - Because the UnitHealth...</title>
			<link>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=6145#cmnt_8781</link>
			<description><![CDATA[Because the UnitHealth seems to always range between 0 and 1.

(Interface: TipTop | Bug: Divide by zero leading to units with infinite health %s.)]]></description>
			<author>fakeh</author>
			<guid>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=6145#cmnt_8781</guid>
			<pubDate>Mon, 12 Oct 2009 09:46:39 +0000</pubDate>
		</item>		<item>
			<title>Tooltip additional frames error - Thanks for following up...</title>
			<link>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=5439#cmnt_8770</link>
			<description><![CDATA[Thanks for following up on it. :)

(Interface: TipTop | Bug: Tooltip additional frames error)]]></description>
			<author>Seerah</author>
			<guid>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=5439#cmnt_8770</guid>
			<pubDate>Tue, 06 Oct 2009 14:36:22 +0000</pubDate>
		</item>		<item>
			<title>Tooltip additional frames error - I just got a response...</title>
			<link>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=5439#cmnt_8769</link>
			<description><![CDATA[I just got a response from Tekkub basically blowing me off because he's &quot;never been able to replicate it&quot;.

I don't believe it's something that should be fixed on TipTop's end since you are able to replicate the issue without using TipTop, and I am able to work around it by using another compare tooltip addon.

(Interface: TipTop | Bug: Tooltip additional frames error)]]></description>
			<author>Hevanus</author>
			<guid>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=5439#cmnt_8769</guid>
			<pubDate>Tue, 06 Oct 2009 14:29:14 +0000</pubDate>
		</item>		<item>
			<title>Player talents repeat (spam-like) in tooltip when moused over player in Grid - Just to note, I use Grid...</title>
			<link>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=5131#cmnt_8768</link>
			<description><![CDATA[Just to note, I use Grid (and a number of extra Grid modules) and TipTop and have never experienced this error. I do not use Clique or any of the other mods that have been mentioned in association with this bug thread.

(Interface: TipTop | Bug: Player talents repeat (spam-like) in tooltip when moused over player in Grid)]]></description>
			<author>JMHammer</author>
			<guid>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=5131#cmnt_8768</guid>
			<pubDate>Tue, 06 Oct 2009 14:09:46 +0000</pubDate>
		</item>		<item>
			<title>Tooltip additional frames error - Currently using Moncai...</title>
			<link>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=5439#cmnt_8764</link>
			<description><![CDATA[Currently using Moncai Compare from Curse along with just the HoverTips &quot;module&quot; of tekKompare and it seems to work fine. I submitted a ticket to Tekkub's bug tracker for tekKompare but haven't heard anything; I think he's slacking :P

(Interface: TipTop | Bug: Tooltip additional frames error)]]></description>
			<author>Hevanus</author>
			<guid>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=5439#cmnt_8764</guid>
			<pubDate>Tue, 06 Oct 2009 02:28:01 +0000</pubDate>
		</item>		<item>
			<title>Enter World Bug - hrmm....

What locale...</title>
			<link>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=6179#cmnt_8757</link>
			<description><![CDATA[hrmm....

What locale are you on?  Can you run this through your chat window please?

/run print(GameTime_GetTime(true))

It should print out your time followed by either AM or PM.  Your error is complaining that the function above is not appending AM/PM on to the end.

(Interface: sStats_Clock | Bug: Enter World Bug)]]></description>
			<author>Seerah</author>
			<guid>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=6179#cmnt_8757</guid>
			<pubDate>Sun, 04 Oct 2009 01:47:17 +0000</pubDate>
		</item>		<item>
			<title>Prefix Colour - While this *technically*...</title>
			<link>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=6180#cmnt_8756</link>
			<description><![CDATA[While this *technically* is not a bug, it just has to do with how often the texts are updated, I will eventually find a better way to do this.

The durability display is based on events.  So it's text is only updated when its durability event fires.  The other displays run with OnUpdate scripts, and update their text every 1 second.

Thanks for reminding me, though, to make a note of this on the durability page...

(Interface: sStats_Durability | Bug: Prefix Colour)]]></description>
			<author>Seerah</author>
			<guid>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=6180#cmnt_8756</guid>
			<pubDate>Sun, 04 Oct 2009 01:43:03 +0000</pubDate>
		</item>		<item>
			<title>Tooltip additional frames error - Ah, sorry.  I did point...</title>
			<link>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=5439#cmnt_8748</link>
			<description><![CDATA[Ah, sorry.  I did point tek to the issue, and it seems that there's not much either of us can do about it.  Unless I get creative and come up with some nasty hacks (which I'm not likely to do for a select case thing)...

(Interface: TipTop | Bug: Tooltip additional frames error)]]></description>
			<author>Seerah</author>
			<guid>http://www.wowinterface.com/portal.php?id=275&amp;a=viewbug&amp;bugid=5439#cmnt_8748</guid>
			<pubDate>Fri, 02 Oct 2009 01:10:22 +0000</pubDate>
		</item>
	</channel>
</rss>