summaryrefslogtreecommitdiff
path: root/Userland/Applications/SystemMonitor/ProcessModel.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-04-05 13:36:43 +0200
committerAndreas Kling <kling@serenityos.org>2021-04-05 13:40:25 +0200
commit6902adbb84c02b19185d68d353bfa417d5f981cf (patch)
treeb1dec15ef41c806da9589287ccbc5cee7d73fe26 /Userland/Applications/SystemMonitor/ProcessModel.cpp
parent52de9b175376f11676e2ea2d32207332f5923069 (diff)
downloadserenity-6902adbb84c02b19185d68d353bfa417d5f981cf.zip
SystemMonitor: Only show the most important process stats by default
You can still enable additional columns via the context menu, and this gives us a much more focused default interface.
Diffstat (limited to 'Userland/Applications/SystemMonitor/ProcessModel.cpp')
-rw-r--r--Userland/Applications/SystemMonitor/ProcessModel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/SystemMonitor/ProcessModel.cpp b/Userland/Applications/SystemMonitor/ProcessModel.cpp
index da7251d1c4..ba9b47065f 100644
--- a/Userland/Applications/SystemMonitor/ProcessModel.cpp
+++ b/Userland/Applications/SystemMonitor/ProcessModel.cpp
@@ -99,7 +99,7 @@ String ProcessModel::column_name(int column) const
case Column::Physical:
return "Physical";
case Column::DirtyPrivate:
- return "DirtyP";
+ return "Private";
case Column::CleanInode:
return "CleanI";
case Column::PurgeableVolatile: