diff --git a/app/src/index.html b/app/src/index.html index 27e92ee3..bb2f6255 100644 --- a/app/src/index.html +++ b/app/src/index.html @@ -29,7 +29,7 @@ Use to browse history; to submit; - alt + t to listen. + alt + c to listen. diff --git a/app/src/js/onkeydown.js b/app/src/js/onkeydown.js index 380fb6e4..309a1cb0 100644 --- a/app/src/js/onkeydown.js +++ b/app/src/js/onkeydown.js @@ -28,7 +28,7 @@ const onkeydowninput = (e, client) => { } const onkeydowndocument = (e, cb) => { - if (e.altKey && e.key === 't') { + if (e.altKey && e.key === 'c') { cb() } }