1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:18:11 +00:00

GTextEditor: Let the Tab key insert up to 4 spaces.

This commit is contained in:
Andreas Kling 2019-03-10 11:08:36 +01:00
parent 64237c5028
commit 8017c1e17c
2 changed files with 12 additions and 0 deletions

View file

@ -150,5 +150,6 @@ private:
bool m_cursor_state { true };
bool m_in_drag_select { false };
int m_line_spacing { 2 };
int m_soft_tab_width { 4 };
GTextRange m_selection;
};