1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:57:44 +00:00

LibGUI: Set Editors to wrap at words when MultiLine

And default to NoWrap when they are type SingleLine.
This commit is contained in:
thankyouverycool 2022-02-26 15:22:30 -05:00 committed by Andreas Kling
parent 9e81c2dc83
commit 5fedb742da
2 changed files with 4 additions and 2 deletions

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::WrapAtWords };
WrappingMode m_wrapping_mode { WrappingMode::NoWrap };
bool m_visualize_trailing_whitespace { true };
bool m_visualize_leading_whitespace { false };
bool m_cursor_line_highlighting { true };