-
Notifications
You must be signed in to change notification settings - Fork 63
Description
Hi
I'm using cpp-terminal to program a small text editor where I want to perform some programming experiments, and also to contribute to the library as a user. I'm glad the cpp-terminal exists, it's easy to "paint" things in a multiplatform way, and I have some stuff already running in Windows, Linux and RPI3. So thanks to all contributors!
My question is, and sorry if this is not the correct place to ask it, what's the supposed behavior of the library related to flickering? I'm using the Window
class in order to render the final string, which I print with std::cout
and std::flush
. I draw the whole terminal, by the way. That is, I get terminal size at the beginning and use it to configure the Window
instance.
I'm updating the library frequently (I mean, pulling it from its repository), and yesterday it was flickering like crazy, specially in Windows. Some minutes ago I updated the library again and now it seems it has no flickering at all.
So, I understand that it should not flicker if I use the Window
class as I mentioned. Is this correct?
Thanks in advance.