summaryrefslogtreecommitdiff
path: root/Juick/Controls/MessageList.xaml
diff options
context:
space:
mode:
Diffstat (limited to 'Juick/Controls/MessageList.xaml')
-rw-r--r--Juick/Controls/MessageList.xaml3
1 files changed, 2 insertions, 1 deletions
diff --git a/Juick/Controls/MessageList.xaml b/Juick/Controls/MessageList.xaml
index 7a5882f..b53b7b8 100644
--- a/Juick/Controls/MessageList.xaml
+++ b/Juick/Controls/MessageList.xaml
@@ -13,6 +13,7 @@
d:DesignHeight="480" d:DesignWidth="480">
<UserControl.Resources>
<converters:MidToUriConverter x:Key="uriConverter" />
+ <converters:UriToImageSourceConverter x:Key="imgCacheConverter" />
</UserControl.Resources>
<Grid x:Name="LayoutRoot">
@@ -37,7 +38,7 @@
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
- <Image bindings:LowProfileImageLoader.UriSource="{Binding AvatarUri}" Grid.Row="0" Grid.Column="0" Margin="3" />
+ <Image Source="{Binding AvatarUri, Converter={StaticResource imgCacheConverter}}" Grid.Row="0" Grid.Column="0" Margin="3" />
<TextBlock Text="{Binding Username}" Grid.Row="0" Grid.Column="1"
Margin="5,0,5,5" VerticalAlignment="Top"
HorizontalAlignment="Left"