Skip to content

Commit 62b7418

Browse files
committed
LibGUI: Add 1px of horizontal content padding to TextEditor
This adds a little bit of needed air around the text.
1 parent 558ca65 commit 62b7418

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Libraries/LibGUI/TextEditor.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ class TextEditor
224224
bool m_readonly { false };
225225
int m_line_spacing { 4 };
226226
size_t m_soft_tab_width { 4 };
227-
int m_horizontal_content_padding { 2 };
227+
int m_horizontal_content_padding { 3 };
228228
TextRange m_selection;
229229
RefPtr<Menu> m_context_menu;
230230
RefPtr<Action> m_undo_action;

0 commit comments

Comments
 (0)