Closed as not planned
Description
Describe the problem
When you Serial.print(); something to serial monitor, new line text hides behind the status bar (the blue ribbon on the bottom of the program window) as the text is scrolling
Video example:
final_62d1e39659bd3700b634bc59_516311.mp4
With Nightly:
To reproduce
Just copy the code below and upload to any Arduino board ( i tried with Arduino Nano and Generic ESP8266)
int i = 0;
void setup() {
Serial.begin(115200);
}
void loop() {
i++;
Serial.println(i);
delay(200);
}
Expected behavior
You can expect to have every new line printed in the Serial monitor to be hidden behind the status bar (the blue ribbon on the bottom of the window)
Arduino IDE version
Version: 2.0.0-rc8-nightly-20220713 Date: 2022-07-13T03:32:42.528Z CLI Version: 0.24.0 [c1b10f56] Copyright © 2022 Arduino SA
Operating system
Windows, Linux
Operating system version
Windows 10; Kali Linux release 2022.2
Additional context
No response
Issue checklist
- I searched for previous reports in the issue tracker
- I verified the problem still occurs when using the latest nightly build
- My report contains all necessary details