about summary refs log tree commit diff stats
path: root/shell/trace.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-04-10 21:56:47 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-04-10 22:14:20 -0700
commite93bbec63b063a509f0166ee0c6129826848e347 (patch)
tree8e5c139423a5124ceae43e3ab1f38b521fd55b08 /shell/trace.mu
parent770cac9412f95e0b305712239a86ff388467a1e1 (diff)
downloadmu-e93bbec63b063a509f0166ee0c6129826848e347.tar.gz
shell: start jumping to keyboard using Tab
Diffstat (limited to 'shell/trace.mu')
-rw-r--r--shell/trace.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/trace.mu b/shell/trace.mu
index b0c43f74..410429e6 100644
--- a/shell/trace.mu
+++ b/shell/trace.mu
@@ -668,8 +668,8 @@ fn render-trace-menu screen: (addr screen) {
   set-cursor-position screen, 0/x, y
   draw-text-rightward-from-cursor screen, " ctrl-s ", width, 0/fg, 7/bg=grey
   draw-text-rightward-from-cursor screen, " run sandbox  ", width, 7/fg, 0/bg
-  draw-text-rightward-from-cursor screen, " tab ", width, 0/fg, 3/bg=cyan
-  draw-text-rightward-from-cursor screen, " move to sandbox  ", width, 7/fg, 0/bg
+  draw-text-rightward-from-cursor screen, " tab ", width, 0/fg, 0x18/bg=keyboard
+  draw-text-rightward-from-cursor screen, " move to keyboard  ", width, 7/fg, 0/bg
   draw-text-rightward-from-cursor screen, " j ", width, 0/fg, 7/bg=grey
   draw-text-rightward-from-cursor screen, " down  ", width, 7/fg, 0/bg
   draw-text-rightward-from-cursor screen, " k ", width, 0/fg, 7/bg=grey