We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
blessed crashes when I set a content to bigtext with
content
bigtext
TypeError: Cannot set properties of undefined (setting '0')
Runs:
let box = new blessed.bigtext({ top: (i/number).toString() + '%', left: (j/number2).toString() + '%', width: (1/number2).toString() + '%', height: (1/number).toString() + '%' });
Also runs:
let box = new blessed.box({ top: (i/number).toString() + '%', left: (j/number2).toString() + '%', width: (1/number2).toString() + '%', height: (1/number).toString() + '%', content: 'X' });
Doesn't run:
let box = new blessed.bigtext({ top: (i/number).toString() + '%', left: (j/number2).toString() + '%', width: (1/number2).toString() + '%', height: (1/number).toString() + '%', content: 'X' });
The text was updated successfully, but these errors were encountered:
No branches or pull requests
blessed crashes when I set a
content
tobigtext
withTypeError: Cannot set properties of undefined (setting '0')
Runs:
Also runs:
Doesn't run:
The text was updated successfully, but these errors were encountered: