Skip to content

feat: Add a copy button to serial monitor #2718

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Prev Previous commit
Do not update widget when copying output
No longer updates the serial monitor output after its content is copied.
Copying the content does not change anything for the view, so there is
no need to update.
  • Loading branch information
502E532E committed May 3, 2025
commit 1a95c3358a9be8f7fdfdbacfd34dcbe838641c30
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ export class MonitorWidget extends ReactWidget {

copyOutput(): void {
this.copyOutputEmitter.fire();
this.update();
}

override dispose(): void {
Expand Down
Loading