summaryrefslogtreecommitdiff
path: root/Applications
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-05-07 16:07:07 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-05-07 16:07:07 +0200
commit922391e772440174e6c1e9e6aedf434a01f02064 (patch)
tree07b400eb1bf42e142252cd2e935978c43cdb2c76 /Applications
parent19eeaf807d105667553e12487cf5a9eaff2e79cb (diff)
downloadserenity-922391e772440174e6c1e9e6aedf434a01f02064.zip
ProcessManager: Tweak default column widths.
Diffstat (limited to 'Applications')
-rw-r--r--Applications/ProcessManager/ProcessModel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Applications/ProcessManager/ProcessModel.cpp b/Applications/ProcessManager/ProcessModel.cpp
index dcd9d9abd0..9161920619 100644
--- a/Applications/ProcessManager/ProcessModel.cpp
+++ b/Applications/ProcessManager/ProcessModel.cpp
@@ -54,13 +54,13 @@ GModel::ColumnMetadata ProcessModel::column_metadata(int column) const
{
switch (column) {
case Column::Icon: return { 16, TextAlignment::CenterLeft };
- case Column::PID: return { 25, TextAlignment::CenterRight };
+ case Column::PID: return { 32, TextAlignment::CenterRight };
case Column::State: return { 75, TextAlignment::CenterLeft };
case Column::Priority: return { 16, TextAlignment::CenterLeft };
case Column::User: return { 50, TextAlignment::CenterLeft };
case Column::Linear: return { 65, TextAlignment::CenterRight };
case Column::Physical: return { 65, TextAlignment::CenterRight };
- case Column::CPU: return { 25, TextAlignment::CenterRight };
+ case Column::CPU: return { 32, TextAlignment::CenterRight };
case Column::Name: return { 140, TextAlignment::CenterLeft };
case Column::Syscalls: return { 60, TextAlignment::CenterRight };
default: ASSERT_NOT_REACHED();