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

Terminal: Single settings window & consistant visual bell timing

This commit is contained in:
Christopher Dumas 2019-05-31 14:51:06 -07:00 committed by Andreas Kling
parent 6a4cb25557
commit b0d8dba16d
5 changed files with 60 additions and 87 deletions

View file

@ -144,7 +144,6 @@ private:
bool m_stomp { false };
bool m_should_beep { false };
int m_visual_beep_frames { 0 };
Attribute m_current_attribute;
@ -196,5 +195,6 @@ private:
int m_glyph_width { 0 };
CTimer m_cursor_blink_timer;
CTimer m_visual_beep_timer;
RetainPtr<CConfigFile> m_config;
};