Update lib.js

master
thyttan 2022-05-15 11:53:51 +02:00 committed by GitHub
parent 4415325703
commit 29be42c606
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ exports.input = function(options) {
function displayText(hideMarker) { function displayText(hideMarker) {
layout.clear(layout.text); layout.clear(layout.text);
layout.text.label = text.slice(settings.showHelpBtn ? -11 : -13) + (!hideMarker ? "_" : " "); layout.text.label = text.slice(settings.showHelpBtn ? -11 : -13) + (hideMarker ? " " : "_");
layout.render(layout.text); layout.render(layout.text);
} }