AlignmentFrame opacity set to TRUE for JavaScript.
authorhansonr <hansonr@stolaf.edu>
Sun, 24 Jun 2018 07:11:53 +0000 (08:11 +0100)
committerhansonr <hansonr@stolaf.edu>
Sun, 24 Jun 2018 07:11:53 +0000 (08:11 +0100)
This seems to be some sort of JavaScript fluke, because if you set the
background color of an internal div to opaque but then set the
background color of that div's parent to transparent, then it goes
transparent.

src/jalview/gui/Desktop.java

index fc95f83..c08c64e 100644 (file)
@@ -880,7 +880,8 @@ public class Desktop extends jalview.jbgui.GDesktop
     frame.setResizable(resizable);
     frame.setMaximizable(resizable);
     frame.setIconifiable(resizable);
-    frame.setOpaque(false);
+    frame.setOpaque(/** @j2sNative true || */
+            false);
 
     if (frame.getX() < 1 && frame.getY() < 1)
     {