[Bprocessor-commit] gl/src/net/sourceforge/bprocessor/gl/view Display.java, 1.110, 1.111
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2011-05-26 13:53:32
|
Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view In directory vz-cvs-2.sog:/tmp/cvs-serv14040/src/net/sourceforge/bprocessor/gl/view Modified Files: Display.java Log Message: Index: Display.java =================================================================== RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view/Display.java,v retrieving revision 1.110 retrieving revision 1.111 diff -C2 -d -r1.110 -r1.111 *** Display.java 5 May 2011 10:22:55 -0000 1.110 --- Display.java 26 May 2011 13:53:29 -0000 1.111 *************** *** 54,57 **** --- 54,58 ---- private static final boolean TRUE = true; + private static float defaultAlpha = 0.3f; private static boolean initialized; private static boolean selecting; *************** *** 553,557 **** paint(current, color, 1.0f, false); } else if (transparency) { ! paint(current, color, 0.3f, false); } } --- 554,558 ---- paint(current, color, 1.0f, false); } else if (transparency) { ! paint(current, color, defaultAlpha, false); } } *************** *** 563,567 **** paint(current, color, 1.0f, true); } else if (transparency) { ! paint(current, color, 0.3f, true); } } --- 564,568 ---- paint(current, color, 1.0f, true); } else if (transparency) { ! paint(current, color, defaultAlpha, true); } } |