1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 14:28:12 +00:00

GTextBox: Avoid one instance of overdraw + naming cleanup.

This commit is contained in:
Andreas Kling 2019-01-27 15:12:33 +01:00
parent 0e73aa36c8
commit 90e898b771
2 changed files with 33 additions and 34 deletions

View file

@ -24,7 +24,7 @@ private:
void handle_backspace();
String m_text;
unsigned m_cursorPosition { 0 };
bool m_cursorBlinkState { false };
unsigned m_cursor_position { 0 };
bool m_cursor_blink_state { false };
};