[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

gEDA-cvs: pcb.git: branch: master updated (e68ecd008bcc24b176be896f9c0747863f4d0d64)



The branch, master has been updated
       via  e68ecd008bcc24b176be896f9c0747863f4d0d64 (commit)
      from  234485511ff360c4ff95b87b2d0202c571af9675 (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 e68ecd008bcc24b176be896f9c0747863f4d0d64
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Commit: Peter Clifton <pcjc2@xxxxxxxxx>

    change.c: Fix drawing artaefacts when rotating the buffer
    
    In commit 0213e4791f9aa4008c8d06a48c377b338f6e1a43 converting
    {Hide,Restore}Crosshair calls to become notify_crosshair_changed,
    I mixed up two of the true / false parameters to to nofify_crosshair_changed.
    
    This caused the GUI to get out of sync undrawing and redrawing the
    crosshair attached objects around the change.
    
    Manually checking the diff from the offending commit, I don't see any
    other calls which were transposed incorrectly.
    
    Reported-by: DJ Delorie <dj@xxxxxxxxxxx>

:100644 100644 ae6b87e... 4f2e401... M	src/action.c

=========
 Changes
=========

commit e68ecd008bcc24b176be896f9c0747863f4d0d64
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Commit: Peter Clifton <pcjc2@xxxxxxxxx>

    change.c: Fix drawing artaefacts when rotating the buffer
    
    In commit 0213e4791f9aa4008c8d06a48c377b338f6e1a43 converting
    {Hide,Restore}Crosshair calls to become notify_crosshair_changed,
    I mixed up two of the true / false parameters to to nofify_crosshair_changed.
    
    This caused the GUI to get out of sync undrawing and redrawing the
    crosshair attached objects around the change.
    
    Manually checking the diff from the offending commit, I don't see any
    other calls which were transposed incorrectly.
    
    Reported-by: DJ Delorie <dj@xxxxxxxxxxx>

diff --git a/src/action.c b/src/action.c
index ae6b87e..4f2e401 100644
--- a/src/action.c
+++ b/src/action.c
@@ -6040,7 +6040,7 @@ ActionPasteBuffer (int argc, char **argv, int x, int y)
   static char *default_file = NULL;
   int free_name = 0;
 
-  notify_crosshair_change (true);
+  notify_crosshair_change (false);
   if (function)
     {
       switch (GetFunctionID (function))
@@ -6147,7 +6147,7 @@ ActionPasteBuffer (int argc, char **argv, int x, int y)
 	      }
 	    else
 	      {
-		notify_crosshair_change (false);
+		notify_crosshair_change (true);
 		AFAIL (pastebuffer);
 	      }
 




_______________________________________________
geda-cvs mailing list
geda-cvs@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-cvs