When I have a progress bar that update, I do:
clear();
// Redraw progress bar with new values here
My question is:
- How to hide the cursor (toggle cursor on or off)
- The clear/redraw is causing a flicker effect on the screen. How can this be prevented, like:
Rather use offset x/y positions to update characters, than to do a clear / redraw?
When I have a progress bar that update, I do:
clear();
// Redraw progress bar with new values here
My question is:
Rather use offset x/y positions to update characters, than to do a clear / redraw?