Skip to content

Commit

Permalink
ProcessManager: Tweak default column widths.
Browse files Browse the repository at this point in the history
  • Loading branch information
awesomekling committed May 7, 2019
1 parent 19eeaf8 commit 922391e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Applications/ProcessManager/ProcessModel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 922391e

Please sign in to comment.