From 2075c38fd1e5fb02dce6cbe62aeeee98ffeda2c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Eric=20Janouch?= Date: Wed, 7 Sep 2022 17:33:14 +0200 Subject: [PATCH] xP: use an industry-standard name for a button --- xP/public/xP.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'), ])