Use scale instead of rotation in news month sidebar

This commit is contained in:
Salman Ahmed 2024-07-08 08:45:44 +03:00
parent be039b85ad
commit dc630ddc9d
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ protected override void LoadComplete()
Expanded.BindValueChanged(open =>
{
icon.Scale = new Vector2(1, open.NewValue ? -1 : 1);
icon.ScaleTo(open.NewValue ? new Vector2(1f, -1f) : Vector2.One, 300, Easing.OutQuint);
}, true);
}
}