[Laszlo-checkins] r13138 - openlaszlo/trunk/lps/components/extensions

bargull@openlaszlo.org bargull at openlaszlo.org
Tue Mar 3 04:06:53 PST 2009


Author: bargull
Date: 2009-03-03 04:06:51 -0800 (Tue, 03 Mar 2009)
New Revision: 13138

Modified:
   openlaszlo/trunk/lps/components/extensions/drawview.lzx
Log:
Change 20090303-bargull-kKV by bargull at dell--p4--2-53 on 2009-03-03 12:05:13
    in /home/Admin/src/svn/openlaszlo/trunk
    for http://svn.openlaszlo.org/openlaszlo/trunk

Summary: fix braino in __playPath()

New Features:

Bugs Fixed: LPP-7849 (drawview doesn't get "drawn" when visible=false in swf8.)
 

Technical Reviewer: max
QA Reviewer: mdemmon
Doc Reviewer: (pending)

Documentation:

Release Notes:

Details:
drawview#context is a separate movieclip (not the sprite's mc-ref), therefore the visible state of the context isn't dependent on the visible state of the drawview.
    

Tests:
testcase from bugreport



Modified: openlaszlo/trunk/lps/components/extensions/drawview.lzx
===================================================================
--- openlaszlo/trunk/lps/components/extensions/drawview.lzx	2009-03-03 11:51:26 UTC (rev 13137)
+++ openlaszlo/trunk/lps/components/extensions/drawview.lzx	2009-03-03 12:06:51 UTC (rev 13138)
@@ -1209,7 +1209,7 @@
                         m.curveTo(op[1], op[2], op[3], op[4]);
                     }
                 }
-                if ($as2) { this.context._visible = this.visible; }
+                if ($as2) { this.context._visible = true; }
             }
 
             function stroke() {



More information about the Laszlo-checkins mailing list