1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:37:36 +00:00

LibLine: Fully redraw on resize when origin position changes

This commit is contained in:
Ali Mohammad Pur 2024-02-06 01:40:45 +03:30 committed by Ali Mohammad Pur
parent 35abbafb7b
commit cde528fdd9
2 changed files with 29 additions and 1 deletions

View file

@ -442,6 +442,7 @@ private:
// Exact position before our prompt in the terminal.
size_t m_origin_row { 0 };
size_t m_origin_column { 0 };
bool m_expected_origin_changed { false };
bool m_has_origin_reset_scheduled { false };
OwnPtr<SuggestionDisplay> m_suggestion_display;