Can't click-through #74


  • New
  • Defect
Open
Assigned to ardentvark
  • _ForgeUser5432335 created this issue Oct 7, 2011

    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

  • _ForgeUser5432335 added the tags New Defect Oct 7, 2011
  • _ForgeUser75635 posted a comment May 6, 2012

    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.