You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by tv...@apache.org on 2009/10/08 21:35:40 UTC

svn commit: r823288 - /incubator/pivot/trunk/wtk/src/org/apache/pivot/wtk/DesktopApplicationContext.java

Author: tvolkert
Date: Thu Oct  8 19:35:40 2009
New Revision: 823288

URL: http://svn.apache.org/viewvc?rev=823288&view=rev
Log:
PIVOT-319 :: Work-around Win32 full screen issue

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

Modified: incubator/pivot/trunk/wtk/src/org/apache/pivot/wtk/DesktopApplicationContext.java
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/wtk/src/org/apache/pivot/wtk/DesktopApplicationContext.java?rev=823288&r1=823287&r2=823288&view=diff
==============================================================================
--- incubator/pivot/trunk/wtk/src/org/apache/pivot/wtk/DesktopApplicationContext.java (original)
+++ incubator/pivot/trunk/wtk/src/org/apache/pivot/wtk/DesktopApplicationContext.java Thu Oct  8 19:35:40 2009
@@ -563,7 +563,9 @@
 
             } else {
                 // Go to windowed mode
-                graphicsDevice.setFullScreenWindow(null);
+                // TODO This line should be uncommented, but it can throw
+                // an exception on Win32 platforms. See PIVOT-319 for more info.
+                //graphicsDevice.setFullScreenWindow(null);
 
                 fullScreenHostFrame.remove(displayHost);
                 fullScreenHostFrame.setVisible(false);