Oops - now the top parser will output the whole command.

This commit is contained in:
Ken Moore
2016-09-13 12:13:09 -04:00
parent 024c049f35
commit 70289f9d7a

View File

@@ -283,7 +283,7 @@ QJsonObject SysMgmt::procInfo() {
values.insert("cpu", line.section(" ", 8, 8));
values.insert("time", line.section(" ", 9, 9));
values.insert("wcpu", line.section(" ", 10, 10));
values.insert("command", line.section(" ", 11, 11));
values.insert("command", line.section(" ", 11, -1));
// Add the PID object
retObject.insert(pid, values);