Solve issues with atomic copy (#867)

This commit is contained in:
Felix 2024-05-26 15:28:05 +02:00 committed by GitHub
parent ecacb22d37
commit 7b1f4d435b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -109,7 +109,7 @@ class ScreenInteractive : public Screen {
std::string set_cursor_position;
std::string reset_cursor_position;
std::atomic<bool> quit_ = false;
std::atomic<bool> quit_{false};
std::thread event_listener_;
std::thread animation_listener_;
bool animation_requested_ = false;