Skip to content

Commit

Permalink
tweak switch symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
Ken Kundert authored and Ken Kundert committed Nov 4, 2022
1 parent 0abb5dc commit aca5783
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/classes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ This section documents the available components. Components include an invisible
tile in which the component should fit. The tile extent is used when determining
the size of the overall schematic. Each component requires that you specify
location by giving the location of its principle coordinates or a pin. You can
specify an placement offset using ``xoff``, ``yoff`, or ``off``. You can also
specify an placement offset using ``xoff``, ``yoff``, or ``off``. You can also
generally specify the orientation, the name, the value, and a text offset using
``orient``, ``name``, ``value``, and ``nudge``.

Expand Down
2 changes: 1 addition & 1 deletion svg_schematic.py
Original file line number Diff line number Diff line change
Expand Up @@ -1978,7 +1978,7 @@ def __init__(
# Switch {{{2
switch = schematic.line(
start=(-gap/2, 0), end=(gap/2, -sep/2),
stroke_width=lw, stroke='black',
stroke_width=lw, stroke='black', stroke_linecap='round'
)
symbol.add(switch)
if dots:
Expand Down

0 comments on commit aca5783

Please sign in to comment.