aboutsummaryrefslogtreecommitdiff
path: root/xP
diff options
context:
space:
mode:
authorPřemysl Eric Janouch <p@janouch.name>2022-09-07 17:33:14 +0200
committerPřemysl Eric Janouch <p@janouch.name>2022-09-07 17:33:38 +0200
commit2075c38fd1e5fb02dce6cbe62aeeee98ffeda2c9 (patch)
tree40e8ec7b73032b372974ee4216d2d1eacaf07b67 /xP
parent88a7b1a2d98d318d32f74d0dc5ef53b95ee5bde0 (diff)
downloadxK-2075c38fd1e5fb02dce6cbe62aeeee98ffeda2c9.tar.gz
xK-2075c38fd1e5fb02dce6cbe62aeeee98ffeda2c9.tar.xz
xK-2075c38fd1e5fb02dce6cbe62aeeee98ffeda2c9.zip
xP: use an industry-standard name for a button
Diffstat (limited to 'xP')
-rw-r--r--xP/public/xP.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/xP/public/xP.js b/xP/public/xP.js
index 2147cd3..0a939c2 100644
--- a/xP/public/xP.js
+++ b/xP/public/xP.js
@@ -253,7 +253,7 @@ let Toolbar = {
view: vnode => {
return m('.toolbar', {}, [
m('button', {onclick: Toolbar.toggleAutoscroll},
- bufferAutoscroll ? 'Pause autoscroll' : 'Unpause autoscroll'),
+ bufferAutoscroll ? 'Scroll lock' : 'Scroll unlock'),
m('button', {onclick: Toolbar.toggleLog},
bufferLog === undefined ? 'Show log' : 'Hide log'),
])