gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash ChangeLog server/edit_text_character.cpp


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog server/edit_text_character.cpp
Date: Fri, 20 Jul 2007 15:32:18 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  07/07/20 15:32:18

Modified files:
        .              : ChangeLog 
        server         : edit_text_character.cpp 

Log message:
                * server/edit_text_character.cpp (display): make the default
                  background color solid white (but still background is only 
drawn
                  if either 'background' or 'border' are set to true).

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.3775&r2=1.3776
http://cvs.savannah.gnu.org/viewcvs/gnash/server/edit_text_character.cpp?cvsroot=gnash&r1=1.80&r2=1.81

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.3775
retrieving revision 1.3776
diff -u -b -r1.3775 -r1.3776
--- ChangeLog   20 Jul 2007 14:40:08 -0000      1.3775
+++ ChangeLog   20 Jul 2007 15:32:17 -0000      1.3776
@@ -1,5 +1,8 @@
 2007-07-20 Sandro Santilli <address@hidden>
 
+       * server/edit_text_character.cpp (display): make the default
+         background color solid white (but still background is only drawn
+         if either 'background' or 'border' are set to true).
        * testsuite/misc-ming.all/DefineEditTextTest.c: don't include gnash
          headers from SWF *generators* !
        * configure.ac: provide a RENDERER_LIBS listing all built renderer

Index: server/edit_text_character.cpp
===================================================================
RCS file: /sources/gnash/gnash/server/edit_text_character.cpp,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -b -r1.80 -r1.81
--- server/edit_text_character.cpp      20 Jul 2007 00:06:32 -0000      1.80
+++ server/edit_text_character.cpp      20 Jul 2007 15:32:18 -0000      1.81
@@ -17,7 +17,7 @@
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 //
 
-/* $Id: edit_text_character.cpp,v 1.80 2007/07/20 00:06:32 strk Exp $ */
+/* $Id: edit_text_character.cpp,v 1.81 2007/07/20 15:32:18 strk Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -462,7 +462,7 @@
                coords[3] = def_bounds.get_corner(3);
                
                rgba borderColor = drawBorder ? getBorderColor() : 
rgba(0,0,0,0);
-               rgba backgroundColor = drawBackground ? getBackgroundColor() : 
rgba(255,255,255,0);
+               rgba backgroundColor = drawBackground ? getBackgroundColor() : 
rgba(255,255,255,255);
 
                if ( 0 ) // should be if ! isDynamic to be PP-compatible (or is 
it about device font? to be tested)
                         // Currently disabled due to what looks like a bug in 
color transform




reply via email to

[Prev in Thread] Current Thread [Next in Thread]