This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site.
What steps will reproduce the problem?1.Click on splash icon.2.Sometimes can't click even when no splash icon visible.
What is the expected output? What do you see instead?Would be nice if I there was a click-through option. Now I sometimes get problems with movement (ie right click move)
What version of the product are you using?v0.7
I also had that problem and solved it.
add this
f:EnableMouse(false)
at line 405 of the prototype.lua (v0.7)
so the part from line 400-408 should look like this
f.finish:SetScript("OnPlay", function() f:SetParent(self.splashAnchor) f:ClearAllPoints() f:SetPoint("CENTER", f.parent.splashAnchor, "CENTER", 0, 0) f.overlay:EnableMouse(false) f:EnableMouse(false) f.overlay:Hide() f.fs:Hide() end)
To post a comment, please login or register a new account.