Dst901 Posted January 20, 2024 Posted January 20, 2024 Hi all, I use the Pure theme for the games list. How can I make box images appear faster? I looked in the configuration files but couldn't find them. thanks. Quote
faeran Posted January 20, 2024 Posted January 20, 2024 7 hours ago, Dst901 said: Hi all, I use the Pure theme for the games list. How can I make box images appear faster? I looked in the configuration files but couldn't find them. thanks. I'd have to double check, but I'm pretty sure the Pure theme uses the default box images, which have a default crossfade animation added to them with logic behind the scenes. There's no way to change the animation's properties, but you could probably replace those elements in the xaml with a basic box image, which would remove the animation entirely. Quote
Dst901 Posted January 21, 2024 Author Posted January 21, 2024 Thank you for your help. I changed the 2 lines in the file Text list with box.xaml <Image x:Name="BoxFrontImage" Aspect="AspectFit" Margin="0,0,0,0" /> <Image x:Name="BoxFrontImage2" Aspect="AspectFit" Margin="0,0,0,0" /> by <Image Source="{Binding ActiveGame.BoxFrontImage}" /> There is no longer the fading animation but the image takes a little time to appear (100ms) Quote
faeran Posted January 22, 2024 Posted January 22, 2024 22 hours ago, Dst901 said: Thank you for your help. I changed the 2 lines in the file Text list with box.xaml <Image x:Name="BoxFrontImage" Aspect="AspectFit" Margin="0,0,0,0" /> <Image x:Name="BoxFrontImage2" Aspect="AspectFit" Margin="0,0,0,0" /> by <Image Source="{Binding ActiveGame.BoxFrontImage}" /> There is no longer the fading animation but the image takes a little time to appear (100ms) Yeah, that delay is for performance purposes. If you want to make it instant, switch "ActiveGame" to "SelectedGame", and then see how you like it. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.