Skip to content

Commit

Permalink
bugfix 'Text.Scroll'
Browse files Browse the repository at this point in the history
  • Loading branch information
o0shojo0o committed Mar 24, 2021
1 parent 20b0a02 commit b5d67dd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@

## Changelog

### 0.3.6 (2021-03-22)
* (o0shojo0o) bugfix 'Text.Scroll'

### 0.3.5 (2021-03-22)
* (o0shojo0o) bugfix 'SleepMode'

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-red-contrib-pixelit",
"version": "0.3.5",
"version": "0.3.6",
"description": "Pixel it Project",
"dependencies": {
"axios": "^0.21.1"
Expand Down
2 changes: 1 addition & 1 deletion pixelit/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ module.exports = (red) => {
// Text Overrides
if (jsonObj.text) {
if (jsonObj.text.scrollText != undefined) {
jsonObj.text.scrollText = tools.booleanConvert(jsonObj.text.scrollText);
jsonObj.text.scrollText = jsonObj.text.scrollText;
}

if (jsonObj.text.scrollTextDelay) {
Expand Down

0 comments on commit b5d67dd

Please sign in to comment.