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
commit 001b08dec9
Notes: sideshowbarker 2024-07-17 18:18:46 +09:00

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 };