Skip to content

Commit

Permalink
Don't print button events in the web UI (#271)
Browse files Browse the repository at this point in the history
  • Loading branch information
invernizzi committed Oct 25, 2023
1 parent e5cf70c commit 78470b6
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ class ButtonComponent extends BoardComponent {
componentType: "button",
state: "pressed",
});
this._drawer.appendEvent(`Button ${this.id} pressed.`);
this.set(true);
}
onReleased() {
Expand All @@ -80,7 +79,6 @@ class ButtonComponent extends BoardComponent {
componentType: "button",
state: "released",
});
this._drawer.appendEvent(`Button ${this.id} released.`);
this.set(false);
}

Expand Down

0 comments on commit 78470b6

Please sign in to comment.