diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2022-09-07 17:33:14 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2022-09-07 17:33:38 +0200 |
commit | 2075c38fd1e5fb02dce6cbe62aeeee98ffeda2c9 (patch) | |
tree | 40e8ec7b73032b372974ee4216d2d1eacaf07b67 /xP/public/xP.js | |
parent | 88a7b1a2d98d318d32f74d0dc5ef53b95ee5bde0 (diff) | |
download | xK-2075c38fd1e5fb02dce6cbe62aeeee98ffeda2c9.tar.gz xK-2075c38fd1e5fb02dce6cbe62aeeee98ffeda2c9.tar.xz xK-2075c38fd1e5fb02dce6cbe62aeeee98ffeda2c9.zip |
xP: use an industry-standard name for a button
Diffstat (limited to 'xP/public/xP.js')
-rw-r--r-- | xP/public/xP.js | 2 |
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'), ]) |