1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:27:35 +00:00

SystemMonitor: Condense process statistics displayed in processes tab

Previously, some non-default process statistics were displayed in a
long human readable format in the processes tab, which could negatively
affect readability. A shorter format is now used in the processes tab,
while the process properties window retains the longer format.
This commit is contained in:
Tim Ledbetter 2024-01-11 18:11:23 +00:00 committed by Andreas Kling
parent c566ef2a9d
commit 7772637d03
3 changed files with 22 additions and 8 deletions

View file

@ -55,6 +55,8 @@ public:
__Count
};
static constexpr GUI::ModelRole DISPLAY_VERBOSE = static_cast<GUI::ModelRole>(0x101);
static ErrorOr<String> read_command_line(pid_t pid);
static ProcessModel& the();