Change tree view toggle from 't' to 'T'
- SHA
4ac25b07ab4cebee34504f6b1bfa752174471f8d- Parents
-
5623a9f - Tree
841cc6b
4ac25b0
4ac25b07ab4cebee34504f6b1bfa752174471f8d5623a9f
841cc6b| Status | File | + | - |
|---|---|---|---|
| M |
gartop/src/gui/app.rs
|
2 | 2 |
gartop/src/gui/app.rsmodified@@ -537,7 +537,7 @@ impl App { | ||
| 537 | 537 | ("Home / End", "First / last"), |
| 538 | 538 | ("PgUp/PgDn", "Jump 10 rows"), |
| 539 | 539 | ("Enter", "Process detail"), |
| 540 | - ("t", "Tree view toggle"), | |
| 540 | + ("T", "Tree view toggle"), | |
| 541 | 541 | ("", ""), |
| 542 | 542 | ("Alt+f", "Freeze list"), |
| 543 | 543 | ("/", "Search filter"), |
@@ -1570,7 +1570,7 @@ impl App { | ||
| 1570 | 1570 | Key::Char('r') => { |
| 1571 | 1571 | self.last_refresh = Instant::now() - std::time::Duration::from_secs(10); |
| 1572 | 1572 | } |
| 1573 | - Key::Char('t') => { | |
| 1573 | + Key::Char('T') => { | |
| 1574 | 1574 | self.tree_view = !self.tree_view; |
| 1575 | 1575 | ev_loop.request_redraw(); |
| 1576 | 1576 | } |