From b242fe20cc31008415c2f2b7de3ab0abf04b5e36 Mon Sep 17 00:00:00 2001 From: Tim Ledbetter Date: Fri, 12 Jan 2024 18:20:47 +0000 Subject: [PATCH] SystemMonitor: Make the icon column in the Processes tab non-selectable --- Userland/Applications/SystemMonitor/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Applications/SystemMonitor/main.cpp b/Userland/Applications/SystemMonitor/main.cpp index 16835ab1d6f..d81f294c988 100644 --- a/Userland/Applications/SystemMonitor/main.cpp +++ b/Userland/Applications/SystemMonitor/main.cpp @@ -301,6 +301,7 @@ ErrorOr serenity_main(Main::Arguments arguments) auto& process_table_view = *process_table_container.find_child_of_type_named("process_table"); process_table_view.set_model(TRY(GUI::SortingProxyModel::create(process_model))); + process_table_view.column_header().set_section_selectable(ProcessModel::Icon, false); for (auto column = 0; column < ProcessModel::Column::__Count; ++column) { process_table_view.set_column_visible(column,