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

less: Remove all formatting before printing status line

This commit is contained in:
Peter Elliott 2021-12-27 19:22:53 -07:00 committed by Andreas Kling
parent 3677e88fb1
commit 6312742257

View file

@ -271,9 +271,9 @@ public:
void status_line() void status_line()
{ {
out(m_tty, "\e[7m "); out(m_tty, "\e[0;7m ");
render_status_line(m_prompt); render_status_line(m_prompt);
out(m_tty, " \e[27m"); out(m_tty, " \e[0m");
} }
bool read_line() bool read_line()