GTextBox: Avoid one instance of overdraw + naming cleanup.

This commit is contained in:
Andreas Kling 2019-01-27 15:12:33 +01:00
commit 90e898b771
Notes: sideshowbarker 2024-07-19 15:55:52 +09:00
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 };
};