mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
TextEditor: Let's enable line wrapping by default
This commit is contained in:
parent
b6de723eb3
commit
07933d0b46
Notes:
sideshowbarker
2024-07-19 12:29:18 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/07933d0b462
1 changed files with 1 additions and 0 deletions
|
@ -23,6 +23,7 @@ TextEditorWidget::TextEditorWidget()
|
|||
m_editor = new GTextEditor(GTextEditor::MultiLine, this);
|
||||
m_editor->set_ruler_visible(true);
|
||||
m_editor->set_automatic_indentation_enabled(true);
|
||||
m_editor->set_line_wrapping_enabled(true);
|
||||
|
||||
m_find_widget = new GWidget(this);
|
||||
m_find_widget->set_fill_with_background_color(true);
|
||||
|
|
Loading…
Reference in a new issue