We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Screen::Cursor::shape
Screen::cursor_
Screen::Cursor
shape
ScreenInteractive::Draw(Component)
This has caused crashes and other weird behavior in some of my builds.
Related issues: #937 #602
Possible fix:
@@ -105,7 +105,7 @@ class Screen { BarBlinking = 5, Bar = 6, }; - Shape shape; + Shape shape = Shape::Hidden; }; Cursor cursor() const { return cursor_; } void SetCursor(Cursor cursor) { cursor_ = cursor; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Screen::cursor_
is created using the default constructor ofScreen::Cursor
Screen::Cursor::shape
is not set in the default constructorshape
is later used without being set in places likeScreenInteractive::Draw(Component)
This has caused crashes and other weird behavior in some of my builds.
Related issues: #937 #602
Possible fix:
The text was updated successfully, but these errors were encountered: