git://source.jalview.org
/
jalview.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c5dd938
)
AlignmentFrame opacity set to TRUE for JavaScript.
author
hansonr
<hansonr@stolaf.edu>
Sun, 24 Jun 2018 07:11:53 +0000
(08:11 +0100)
committer
hansonr
<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
patch
|
blob
|
history
diff --git
a/src/jalview/gui/Desktop.java
b/src/jalview/gui/Desktop.java
index
fc95f83
..
c08c64e
100644
(file)
--- a/
src/jalview/gui/Desktop.java
+++ b/
src/jalview/gui/Desktop.java
@@
-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)
{