Revision: 7646
Author: victormote
Date: 2006-06-16 08:23:58 -0700 (Fri, 16 Jun 2006)
ViewCVS: http://svn.sourceforge.net/foray/?rev=7646&view=rev
Log Message:
-----------
Fix opacity on java.awt.Color instances created.
Modified Paths:
--------------
trunk/foray/foray-fotree/src/java/org/foray/fotree/value/DtColor.java
Modified: trunk/foray/foray-fotree/src/java/org/foray/fotree/value/DtColor.java
===================================================================
--- trunk/foray/foray-fotree/src/java/org/foray/fotree/value/DtColor.java 2006-06-16 01:00:38 UTC (rev 7645)
+++ trunk/foray/foray-fotree/src/java/org/foray/fotree/value/DtColor.java 2006-06-16 15:23:58 UTC (rev 7646)
@@ -410,7 +410,8 @@
float red = 0;
float green = 0;
float blue = 0;
- float alpha = 0;
+ /* Default opacity is opaque, which is 1. */
+ float alpha = 1;
if (value.startsWith("#")) {
try {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|