You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by gb...@apache.org on 2009/06/23 03:02:36 UTC

svn commit: r787509 - /incubator/pivot/trunk/wtk/src/org/apache/pivot/wtk/Sheet.java

Author: gbrown
Date: Tue Jun 23 01:02:36 2009
New Revision: 787509

URL: http://svn.apache.org/viewvc?rev=787509&view=rev
Log:
Revert Sheet change - Sheets must be auxilliary windows.

Modified:
    incubator/pivot/trunk/wtk/src/org/apache/pivot/wtk/Sheet.java

Modified: incubator/pivot/trunk/wtk/src/org/apache/pivot/wtk/Sheet.java
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/wtk/src/org/apache/pivot/wtk/Sheet.java?rev=787509&r1=787508&r2=787509&view=diff
==============================================================================
--- incubator/pivot/trunk/wtk/src/org/apache/pivot/wtk/Sheet.java (original)
+++ incubator/pivot/trunk/wtk/src/org/apache/pivot/wtk/Sheet.java Tue Jun 23 01:02:36 2009
@@ -70,7 +70,7 @@
      * The sheet's content component.
      */
     public Sheet(Component content) {
-        super(content, false);
+        super(content, true);
 
         installSkin(Sheet.class);
     }