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

Re: gEDA-user: Warning: All of the pads are on the opposite side?



On Sun, 24 Jul 2005 22:55:14 +0200
Leva <levente.kovacs@xxxxxxxxxxxx> wrote:

> > I tried "Move Selected Elements to Other Side"  (Shift-B) but that either
> > had no effect, or rotated the element 180 degrees depending on the
> > selection.  
> 
> That's a bug, which I discovered today. Shift-B will just change the view
> side (view other side, like what TAB does). "B" will move the component to
> the other side!!!! The menu item works wrong too! 
> 
> I'm using the latest CVS release, 20050609.

Looks like an extra <shift>b in the menu shortcuts and it needs this
simple patch:

--- gui-top-window.c.orig	2005-07-24 16:33:56.846497504 -0500
+++ gui-top-window.c	2005-07-24 16:34:15.561018515 -0500
@@ -1500,7 +1500,7 @@
 	{ "ToggleGridUnitsMm", NULL, N_("Enable millimeter grid units"), NULL, NULL,
 			G_CALLBACK(toggle_grid_units_cb), FALSE },
 	{ "ToggleViewSolderSide", NULL, N_("Enable view solder side"),
-			"<shift>b", NULL,
+			NULL, NULL,
 			G_CALLBACK(toggle_view_solder_side_cb) },
 	{ "ToggleShowSolderMask", NULL, N_("Enable view soldermask"), NULL, NULL,
 			G_CALLBACK(toggle_show_solder_mask_cb) },

But I see the move selected to the other side working when invoking the menu
item and 'B' is supposed to move the component to the other side.  But they
seem to work differently and can that be confusing the situation?  The move
selected invoked from the menu does a flip and translate as if the board
were flipped top to bottom under the selected objects while the 'B' key
(which is MoveObject [single object]) flips to the other side such that the object
stays under the cursor.

Bill