View Single Post
07-15-16, 03:00 PM   #2
Kanegasi
A Molten Giant
 
Kanegasi's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2007
Posts: 666
The "Screen Captured" text is generated in the ActionStatus child of WorldFrame. According to WorldFrame.xml, ActionStatus is set to TOOLTIP, which is the highest frame strata.

The issue lies with the Details addon. The report frame, and possibly other frames, set their strata to TOOLTIP along with using SetFrameLevel. When a frame sets a frame level, it is automatically higher than any other frame in that strata that has not set a frame level. ActionStatus does not have a frame level set.

You can fix this using ActionStatus:SetFrameLevel(129). You can either use that in a macro, paste it into any addon, or make an addon just for that. According to old tests I found, which could be out of date, levels above 129 are ignored.