It works for me, too. Thanks. I guess bug 2 is something similar to this. But how about 3? Is it only on my system or has anybody else have it?
> 2. Same problem as previous when dragging the designator > of a part placed on the solder size. > > 3. On my Fedora Core 4 installation when I place > wires/vias/etc with the auto pan feature on most of the > times the element gets placed one grid position below the > intended location and the board is scrolled by the same > amount. Wether or not this happens depends on the mouse > cursor position relative to the grid at the time of > clicking the mouse button. When auto pan is off it works > correctly. Tamas > From: [EMAIL PROTECTED] > Date: 2006/07/14 Fri AM 12:59:25 EEST > To: [email protected] > CC: [email protected] > Subject: gEDA-user: Re: PCB: Graphical bugs > > Friends - > > On Tue, 11 Jul 2006 13:21:27 +0300, Tamas Varga wrote in geda-user: > > 1. When on the solder size and selecting an area with the mouse, then > > the selection rectangle is drawn incorrectly. The rectangle is drawn > > between the right side of the selection and the right window edge. > > Patch appended. "It Works For Me" [TM]. > > - Larry > > --- pcb-cvs/src/crosshair.c 2006-06-09 20:07:38.000000000 -0700 > +++ pcb-lrd/src/crosshair.c 2006-07-13 14:48:44.000000000 -0700 > @@ -673,6 +673,10 @@ > MAX (Crosshair.AttachedBox.Point1.X, Crosshair.AttachedBox.Point2.X); > y2 = > MAX (Crosshair.AttachedBox.Point1.Y, Crosshair.AttachedBox.Point2.Y); > + if (Settings.ShowSolderSide) { > + /* exchange x1 and x2 */ > + LocationType xt = x1; x1 = x2; x2 = xt; > + } > gui->draw_rect (Crosshair.GC, x1, y1, x2, y2); > } > } _______________________________________________ geda-user mailing list [email protected] http://www.seul.org/cgi-bin/mailman/listinfo/geda-user

