diff options
author | Maciej <sppmacd@pm.me> | 2021-11-24 19:24:08 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-11-24 19:44:02 +0100 |
commit | 700c76ba2377e3e1d9a20e18204556faa409d640 (patch) | |
tree | f07883a47eaf1a52c95408f2519c82f0736123d9 /Userland | |
parent | 905b8bd54571cc0edaaaf28d8deb05747b929c37 (diff) | |
download | serenity-700c76ba2377e3e1d9a20e18204556faa409d640.zip |
CrashReporter: Don't visualize whitespace in memory regions text editor
This was visible for memory regions with empty name.
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/Applications/CrashReporter/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Applications/CrashReporter/main.cpp b/Userland/Applications/CrashReporter/main.cpp index 42a269a30f..e7bbb0d8df 100644 --- a/Userland/Applications/CrashReporter/main.cpp +++ b/Userland/Applications/CrashReporter/main.cpp @@ -358,6 +358,7 @@ int main(int argc, char** argv) memory_regions_text_editor.set_text(String::join("\n", memory_regions)); memory_regions_text_editor.set_mode(GUI::TextEditor::Mode::ReadOnly); memory_regions_text_editor.set_should_hide_unnecessary_scrollbars(true); + memory_regions_text_editor.set_visualize_trailing_whitespace(false); auto& close_button = *widget.find_descendant_of_type_named<GUI::Button>("close_button"); close_button.on_click = [&](auto) { |