From 8017c1e17c7a7cc7a218ed8fbf05e8e5397e76cb Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 10 Mar 2019 11:08:36 +0100 Subject: GTextEditor: Let the Tab key insert up to 4 spaces. --- LibGUI/GTextEditor.h | 1 + 1 file changed, 1 insertion(+) (limited to 'LibGUI/GTextEditor.h') 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; }; -- cgit v1.2.3