Skip to content
New issue

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

Rendering glitch: Dashed borders in the parent are inherited to child #596

Closed
tinchodias opened this issue Sep 4, 2024 · 0 comments · Fixed by #597
Closed

Rendering glitch: Dashed borders in the parent are inherited to child #596

tinchodias opened this issue Sep 4, 2024 · 0 comments · Fixed by #597

Comments

@tinchodias
Copy link
Collaborator

Discovered by Guille, Stef and Pablo:

a := BlElement new.
a background: Color red.
a size: 100 asPoint.
a position: 25 asPoint.

b := BlElement new.
b background: Color green.
b position: 25 asPoint.

a addChild: b.

a border: (BlBorder builder
		 paint: Color black;
		 width: 5;
		 dashArray: #( 10 20 );
		 capSquare;
		 build).

b border: (BlBorder builder
		 paint: Color black;
		 width: 5;
		 build).

s := a openInNewSpace
Screenshot 2024-09-04 at 19 15 21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant