mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-04 15:45:25 +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:
committed by
Andreas Kling
parent
9e81c2dc83
commit
5fedb742da
@@ -57,8 +57,10 @@ TextEditor::TextEditor(Type type)
|
||||
if (is_single_line())
|
||||
set_visualize_trailing_whitespace(false);
|
||||
set_scrollbars_enabled(is_multi_line());
|
||||
if (is_multi_line())
|
||||
if (is_multi_line()) {
|
||||
set_font(Gfx::FontDatabase::default_fixed_width_font());
|
||||
set_wrapping_mode(WrappingMode::WrapAtWords);
|
||||
}
|
||||
vertical_scrollbar().set_step(line_height());
|
||||
m_cursor = { 0, 0 };
|
||||
m_automatic_selection_scroll_timer = add<Core::Timer>(100, [this] {
|
||||
|
||||
Reference in New Issue
Block a user