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

LibGUI: Put TextEditor widgets in "Wrap at Words" mode by default

This commit is contained in:
Andreas Kling 2022-02-24 19:40:26 +01:00
parent 29504ae5b6
commit 001b08dec9

View file

@ -347,7 +347,7 @@ private:
bool m_needs_rehighlight { false };
bool m_has_pending_change_notification { false };
bool m_automatic_indentation_enabled { false };
WrappingMode m_wrapping_mode { WrappingMode::NoWrap };
WrappingMode m_wrapping_mode { WrappingMode::WrapAtWords };
bool m_visualize_trailing_whitespace { true };
bool m_visualize_leading_whitespace { false };
bool m_cursor_line_highlighting { true };