瀏覽代碼

LibGUI: Set Editors to wrap at words when MultiLine

And default to NoWrap when they are type SingleLine.
thankyouverycool 3 年之前
父節點
當前提交
5fedb742da
共有 2 個文件被更改,包括 4 次插入2 次删除
  1. 3 1
      Userland/Libraries/LibGUI/TextEditor.cpp
  2. 1 1
      Userland/Libraries/LibGUI/TextEditor.h

+ 3 - 1
Userland/Libraries/LibGUI/TextEditor.cpp

@@ -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] {

+ 1 - 1
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::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 };