mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
LibGUI: TextEditor widget should default to no wrapping
Since we don't support wrapping in right-aligned text mode, let's keep the old behavior of wrapping being off-by-default for now. Fixes #5275.
This commit is contained in:
parent
106939c11f
commit
da7a8fc055
Notes:
sideshowbarker
2024-07-18 22:28:15 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/da7a8fc055c
@ -319,7 +319,7 @@ private:
|
||||
bool m_ruler_visible { false };
|
||||
bool m_has_pending_change_notification { false };
|
||||
bool m_automatic_indentation_enabled { false };
|
||||
WrappingMode m_wrapping_mode { WrappingMode::WrapAnywhere };
|
||||
WrappingMode m_wrapping_mode { WrappingMode::NoWrap };
|
||||
bool m_has_visible_list { false };
|
||||
bool m_visualize_trailing_whitespace { true };
|
||||
int m_line_spacing { 4 };
|
||||
|
Loading…
Reference in New Issue
Block a user