removed/updated obsolete keybinding descriptions, removed status check on Delete key events
This commit is contained in:
parent
afef3e059f
commit
e332008fa8
|
|
@ -62,6 +62,11 @@ Ctrl + LeftButton drag Select objects by area to perform a
|
|||
Shift + Select objects by area without unselecting
|
||||
Ctrl + LeftButton drag to perform a subsequent 'stretch' move operation
|
||||
|
||||
Shift + Right Button Select all connected wires/labels/pins
|
||||
|
||||
Ctrl + Right Button Select all connected wires/labels/pins, stopping at
|
||||
wire junctions
|
||||
|
||||
Mouse Wheel Zoom in / out
|
||||
|
||||
MidButton drag Pan viewable area
|
||||
|
|
@ -85,7 +90,6 @@ LeftButton Double click Terminate Polygon placement
|
|||
----------------------------------------------------------------------
|
||||
- BackSpace Back to parent schematic
|
||||
- Delete Delete selected objects
|
||||
shift Delete select all connected wires/labels/probes
|
||||
- Insert Insert element from library
|
||||
- Down Move down
|
||||
ctrl Enter Confirm closing dialog boxes
|
||||
|
|
|
|||
|
|
@ -646,7 +646,7 @@ int callback(int event, int mx, int my, KeySym key,
|
|||
dbg(1, "callback(): new color: %d\n",color_index[xctx->rectcolor]);
|
||||
break;
|
||||
}
|
||||
if(key==XK_Delete && (xctx->ui_state & SELECTION) && state == 0) /* delete objects */
|
||||
if(key==XK_Delete && (xctx->ui_state & SELECTION) ) /* delete objects */
|
||||
{
|
||||
if(xctx->semaphore >= 2) break;
|
||||
delete();break;
|
||||
|
|
|
|||
|
|
@ -21,6 +21,11 @@ Ctrl + LeftButton drag Select objects by area to perform a
|
|||
Shift + Select objects by area without unselecting
|
||||
Ctrl + LeftButton drag to perform a subsequent 'stretch' move operation
|
||||
|
||||
Shift + Right Button Select all connected wires/labels/pins
|
||||
|
||||
Ctrl + Right Button Select all connected wires/labels/pins, stopping at
|
||||
wire junctions
|
||||
|
||||
Mouse Wheel Zoom in / out
|
||||
|
||||
MidButton drag Pan viewable area
|
||||
|
|
@ -44,7 +49,6 @@ LeftButton Double click Terminate Polygon placement
|
|||
----------------------------------------------------------------------
|
||||
- BackSpace Back to parent schematic
|
||||
- Delete Delete selected objects
|
||||
shift Delete select all connected wires/labels/probes
|
||||
- Insert Insert element from library
|
||||
- Down Move down
|
||||
ctrl Enter Confirm closing dialog boxes
|
||||
|
|
|
|||
|
|
@ -4056,9 +4056,9 @@ if { ( $::OS== "Windows" || [string length [lindex [array get env DISPLAY] 1] ]
|
|||
xschem redraw
|
||||
}
|
||||
}
|
||||
.menubar.tools.menu add command -label "Select all connected wires/labels/pins" -accelerator {Shift-Delete} \
|
||||
.menubar.tools.menu add command -label "Select all connected wires/labels/pins" -accelerator {Shift-Right Butt.} \
|
||||
-command { xschem connected_nets}
|
||||
.menubar.tools.menu add command -label "Select conn. wires, stop at junctions" -accelerator {Ctrl-Delete} \
|
||||
.menubar.tools.menu add command -label "Select conn. wires, stop at junctions" -accelerator {Ctrl-Righ Butt.} \
|
||||
-command { xschem connected_nets 1 }
|
||||
|
||||
.menubar.hilight.menu add command -label {Highlight net-pin name mismatches on selected instancs} \
|
||||
|
|
|
|||
Loading…
Reference in New Issue