Skip to content

Commit 4bfa659

Browse files
committed
fix(pushbutton): pin positions
`pinInfo` positions for `1.r` and 2.r` were mixed up
1 parent cbca3b8 commit 4bfa659

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pushbutton-element.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ export class PushbuttonElement extends LitElement {
1111
readonly pinInfo: ElementPin[] = [
1212
{ name: '1.l', x: 2, y: 9, signals: [] },
1313
{ name: '2.l', x: 2, y: 36, signals: [] },
14-
{ name: '1.r', x: 65, y: 36, signals: [] },
15-
{ name: '2.r', x: 65, y: 9, signals: [] },
14+
{ name: '1.r', x: 65, y: 9, signals: [] },
15+
{ name: '2.r', x: 65, y: 36, signals: [] },
1616
];
1717

1818
static get styles() {

0 commit comments

Comments
 (0)