-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
Arc StrokeLineCap lost after transition #8659
Comments
Looks like a clipping-related bug |
@kikipoulet can you provide the sample app you have shown in your issue? |
This is the UserControl from my library SukiUI : https://github.com/kikipoulet/SukiUI/blob/main/SukiUI/Controls/CircleProgressBar.axaml And this is the code I use for the demo : https://pastebin.com/dMiZTYVj |
@kikipoulet I think it's the same issue I had back then. I had a PR for this, but I'm not sure if it was backported. See #7778 See dirty rects (you can enable them in dev tool / [F12] ) for reference: |
@kekekeks do you think we can backport the linked PR to 0.10.18? |
Thanks for the explanation ! Can't wait for 10.18 then :) |
Created a backport PR. Let's see if it will be merged, can't promise anything ^^ |
Using Transitions with an Arc loose the StrokeLineCap="Round" property using AvaloniaUI 0.10.17
When adding a transition :
<Arc.Transitions> <Transitions> <DoubleTransition Duration="0:0:0.8" Easing="CircularEaseOut" Property="SweepAngle" /> </Transitions> </Arc.Transitions>
The StrokeLineCap property is lost after the Transition is finished
The text was updated successfully, but these errors were encountered: