summaryrefslogtreecommitdiffstats
path: root/src/canvas.rs
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2020-09-06 23:03:03 -0400
committerGitHub <noreply@github.com>2020-09-06 23:03:03 -0400
commiteb8295c430c246423804148dcc9249da03d5dd9c (patch)
tree203c4c5628546fd7ccd3c68c90c00ce5d70c7278 /src/canvas.rs
parent0d8572c6923c687c19a7cdbcc7128ba703e4e06d (diff)
feature: Adds tree view (#223)
Adds a tree process view to bottom. Currently uses a pretty jank method of column width setting, should get fixed in #225.
Diffstat (limited to 'src/canvas.rs')
-rw-r--r--src/canvas.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/canvas.rs b/src/canvas.rs
index 61f74e4f..e276e097 100644
--- a/src/canvas.rs
+++ b/src/canvas.rs
@@ -42,7 +42,6 @@ pub struct DisplayableData {
pub disk_data: Vec<Vec<String>>,
pub temp_sensor_data: Vec<Vec<String>>,
pub single_process_data: Vec<ConvertedProcessData>, // Contains single process data
- pub process_data: Vec<ConvertedProcessData>, // Not the final value, may be grouped or single
pub finalized_process_data_map: HashMap<u64, Vec<ConvertedProcessData>>, // What's actually displayed
pub mem_label_percent: String,
pub swap_label_percent: String,