Fix clock rendering artifact #62
Loading…
Reference in New Issue
No description provided.
Delete Branch "ilidemi/orca:clock-seconds-radius"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
When rounded rect corner radius exceeds 2 * height, it stops looking like a rect. Proper fix would be to introduce clamping in oc_rounded_rectangle_path but that needs some investigation, what's the standard way of applying it.
Standard way I think would be
min(height, width) / 2
. Might be different if you can apply a different radius to each corner - which we will probably want in some form at some point. You can also enforce different horizontal and vertical radii to get elliptical corners. Never seen anyone use that in the wild though.That's easier than I thought! Reviewer(s), feel free to choose between this and !64.
I'll merge !64 since it adresses the problem at the root!
Pull request closed