diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-03-10 11:08:36 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-03-10 11:08:36 +0100 |
commit | 8017c1e17c7a7cc7a218ed8fbf05e8e5397e76cb (patch) | |
tree | 937c6542858254c7f5800f0ef86569516ab9f0f6 /LibGUI/GTextEditor.h | |
parent | 64237c5028eecf791850619c818d004bb53ed124 (diff) | |
download | serenity-8017c1e17c7a7cc7a218ed8fbf05e8e5397e76cb.zip |
GTextEditor: Let the Tab key insert up to 4 spaces.
Diffstat (limited to 'LibGUI/GTextEditor.h')
-rw-r--r-- | LibGUI/GTextEditor.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/LibGUI/GTextEditor.h b/LibGUI/GTextEditor.h index 28c30e709f..de6e0355a5 100644 --- a/LibGUI/GTextEditor.h +++ b/LibGUI/GTextEditor.h @@ -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; }; |