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
In the ReadoutPanel used by the WireBox, we have this constant: var SPACING = new Text( '-', { font: FONT } ).width;
var SPACING = new Text( '-', { font: FONT } ).width;
It seems like there is a better way to do this. Here is an example usage:
var equalsSign = new Text( '=', { font: FONT, fill: 'black', left: textContainer.width + SPACING } );
The text was updated successfully, but these errors were encountered:
simplify spacing #56
c8bdc0e
from code review: #51, closing
Sorry, something went wrong.
zepumph
No branches or pull requests
In the ReadoutPanel used by the WireBox, we have this constant:
var SPACING = new Text( '-', { font: FONT } ).width;
It seems like there is a better way to do this. Here is an example usage:
The text was updated successfully, but these errors were encountered: