Dst901 Posted January 20 Share Posted January 20 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 Link to comment Share on other sites More sharing options...
faeran Posted January 20 Share Posted January 20 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 Link to comment Share on other sites More sharing options...
Dst901 Posted January 21 Author Share Posted January 21 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 Link to comment Share on other sites More sharing options...
faeran Posted January 22 Share Posted January 22 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 Link to comment Share on other sites More sharing options...
Dst901 Posted January 23 Author Share Posted January 23 Thanks its perfect now ! Quote Link to comment Share on other sites More sharing options...
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.