diff options
author | Andreas Kling <kling@serenityos.org> | 2022-02-24 19:40:26 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-02-24 19:40:26 +0100 |
commit | 001b08dec9a28859ecd5fb9e9a6d42f00bdb9a57 (patch) | |
tree | fcb4cb8c1d01acb4d8f37aa6a5b8d02518b1a47f /Userland/Libraries | |
parent | 29504ae5b6186510eb6843d2a3cbb63b128bf268 (diff) | |
download | serenity-001b08dec9a28859ecd5fb9e9a6d42f00bdb9a57.zip |
LibGUI: Put TextEditor widgets in "Wrap at Words" mode by default
Diffstat (limited to 'Userland/Libraries')
-rw-r--r-- | Userland/Libraries/LibGUI/TextEditor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGUI/TextEditor.h b/Userland/Libraries/LibGUI/TextEditor.h index dd64808930..789188be37 100644 --- a/Userland/Libraries/LibGUI/TextEditor.h +++ b/Userland/Libraries/LibGUI/TextEditor.h @@ -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 }; |