diff options
author | kleines Filmröllchen <filmroellchen@serenityos.org> | 2022-04-05 00:23:01 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-04-06 12:47:50 +0200 |
commit | 9df21a1385da4ba27f7ee4f85ffbe65ff5765346 (patch) | |
tree | adcd026a6f1190c98eace86001eafe77456db104 /Userland/Applications/SystemMonitor | |
parent | 4e8cb0508f6f62a03a136f7f4b858f4606661b94 (diff) | |
download | serenity-9df21a1385da4ba27f7ee4f85ffbe65ff5765346.zip |
SystemMonitor: Move TID to the front in ProcessModel
This will look much nicer once we enable that column.
Diffstat (limited to 'Userland/Applications/SystemMonitor')
-rw-r--r-- | Userland/Applications/SystemMonitor/ProcessModel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/SystemMonitor/ProcessModel.h b/Userland/Applications/SystemMonitor/ProcessModel.h index 274fdf288e..e076ccaa32 100644 --- a/Userland/Applications/SystemMonitor/ProcessModel.h +++ b/Userland/Applications/SystemMonitor/ProcessModel.h @@ -21,6 +21,7 @@ public: enum Column { Icon = 0, PID, + TID, Name, CPU, State, @@ -35,7 +36,6 @@ public: Veil, Processor, Priority, - TID, PPID, PGID, SID, |