| 
      
      
      From: <gi...@gp...> - 2010-09-29 17:10:33
      
     | 
| The branch, master has been updated
       via  5be5cf3f57c61c2e0bcb5da241514012350ccdbd (commit)
      from  7969c1eba58a2dfbe86fa12906ac57a879738bf7 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
=========
 Summary
=========
 src/action.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
=================
 Commit Messages
=================
commit 5be5cf3f57c61c2e0bcb5da241514012350ccdbd
Author: DJ Delorie <dj...@de...>
Commit: DJ Delorie <dj...@de...>
    Make new text clear polygons
:100644 100644 8924d20... f52fcf4... M	src/action.c
=========
 Changes
=========
commit 5be5cf3f57c61c2e0bcb5da241514012350ccdbd
Author: DJ Delorie <dj...@de...>
Commit: DJ Delorie <dj...@de...>
    Make new text clear polygons
diff --git a/src/action.c b/src/action.c
index 8924d20..f52fcf4 100644
--- a/src/action.c
+++ b/src/action.c
@@ -1393,11 +1393,11 @@ NotifyMode (void)
 	    if (strlen(string) > 0)
 	      {
 		TextTypePtr text;
-		int flag = NOFLAG;
+		int flag = CLEARLINEFLAG;
 
 		if (GetLayerGroupNumberByNumber (INDEXOFCURRENT) ==
 		    GetLayerGroupNumberByNumber (solder_silk_layer))
-		  flag = ONSOLDERFLAG;
+		  flag |= ONSOLDERFLAG;
 		if ((text = CreateNewText (CURRENT, &PCB->Font, Note.X,
 					   Note.Y, 0, Settings.TextScale,
 					   string, MakeFlags (flag))) != NULL)
 |