View Single Post
08-28-08, 09:00 AM   #1
dafire
Premium Member
AddOn Author - Click to view addons
Join Date: Jun 2005
Posts: 216
BUG? in UIParent.lua (MouseIsOver())

The MouseIsOver() function is not working if the interface option frame is shown.

I think this might be a relict from the time when this window was fullscreen.. but now when it is only that small window in the middle of the screen I think the function should work nevertheless.

UIParent.lua
Code:
function MouseIsOver(frame, topOffset, bottomOffset, leftOffset, rightOffset)
	-- Don't honor this if options frame is up. Might want to extend this to all center frames
	if ( InterfaceOptionsFrame:IsShown() ) then
		return nil;
	end

[..]
I'd post it in the official forum but I don't have an us account.
  Reply With Quote