From 700c76ba2377e3e1d9a20e18204556faa409d640 Mon Sep 17 00:00:00 2001 From: Maciej Date: Wed, 24 Nov 2021 19:24:08 +0100 Subject: [PATCH] CrashReporter: Don't visualize whitespace in memory regions text editor This was visible for memory regions with empty name. --- Userland/Applications/CrashReporter/main.cpp | 1 + 1 file changed, 1 insertion(+) 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("close_button"); close_button.on_click = [&](auto) {