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

max@openlaszlo.org max at openlaszlo.org
Wed Jul 2 16:25:47 PDT 2008


Author: max
Date: 2008-07-02 16:25:35 -0700 (Wed, 02 Jul 2008)
New Revision: 10183

Modified:
   openlaszlo/trunk/lps/components/extensions/drawview.lzx
Log:
Change 20080702-maxcarlson-o by maxcarlson at Roboto on 2008-07-02 15:20:21 PDT
    in /Users/maxcarlson/openlaszlo/trunk-clean
    for http://svn.openlaszlo.org/openlaszlo/trunk

Summary: Place draview behind subviews in Flash

Bugs Fixed: LPP-6581 - Drawview masks subviews in 4.1 SWF

Technical Reviewer: promanik
QA Reviewer: ryeager at cooqy.com

Details: Use a clip level of 1 to ensure the drawview is visibly behind any subviews.

Tests: See LPP-6581.



Modified: openlaszlo/trunk/lps/components/extensions/drawview.lzx
===================================================================
--- openlaszlo/trunk/lps/components/extensions/drawview.lzx	2008-07-02 22:34:59 UTC (rev 10182)
+++ openlaszlo/trunk/lps/components/extensions/drawview.lzx	2008-07-02 23:25:35 UTC (rev 10183)
@@ -926,7 +926,7 @@
                 var context = this.sprite.getContext();
                 if ($swf8) {
                     this.rebuildBitmap();
-                    this.drawcontainer = context.createEmptyMovieClip("drawcontainer",context.getNextHighestDepth());
+                    this.drawcontainer = context.createEmptyMovieClip("drawcontainer",1);
                     this.__drawing = this.drawcontainer.createEmptyMovieClip("drawing",this.drawcontainer.getNextHighestDepth());
 
                     context = this.drawcontainer;



More information about the Laszlo-checkins mailing list