gardesk/gartop / 4ac25b0

Browse files

Change tree view toggle from 't' to 'T'

Authored by espadonne
SHA
4ac25b07ab4cebee34504f6b1bfa752174471f8d
Parents
5623a9f
Tree
841cc6b

1 changed file

StatusFile+-
M gartop/src/gui/app.rs 2 2
gartop/src/gui/app.rsmodified
@@ -537,7 +537,7 @@ impl App {
537537
             ("Home / End", "First / last"),
538538
             ("PgUp/PgDn", "Jump 10 rows"),
539539
             ("Enter", "Process detail"),
540
-            ("t", "Tree view toggle"),
540
+            ("T", "Tree view toggle"),
541541
             ("", ""),
542542
             ("Alt+f", "Freeze list"),
543543
             ("/", "Search filter"),
@@ -1570,7 +1570,7 @@ impl App {
15701570
                             Key::Char('r') => {
15711571
                                 self.last_refresh = Instant::now() - std::time::Duration::from_secs(10);
15721572
                             }
1573
-                            Key::Char('t') => {
1573
+                            Key::Char('T') => {
15741574
                                 self.tree_view = !self.tree_view;
15751575
                                 ev_loop.request_redraw();
15761576
                             }