1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:37:35 +00:00

LibGUI: Add 1px of horizontal content padding to TextEditor

This adds a little bit of needed air around the text.
This commit is contained in:
Andreas Kling 2020-05-18 17:47:01 +02:00
parent 558ca65ca5
commit 62b7418376

View file

@ -224,7 +224,7 @@ private:
bool m_readonly { false };
int m_line_spacing { 4 };
size_t m_soft_tab_width { 4 };
int m_horizontal_content_padding { 2 };
int m_horizontal_content_padding { 3 };
TextRange m_selection;
RefPtr<Menu> m_context_menu;
RefPtr<Action> m_undo_action;