summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Cells/ImageCellRenderer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/Cells/ImageCellRenderer.cs')
-rw-r--r--Xamarin.Forms.Platform.Tizen/Cells/ImageCellRenderer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Cells/ImageCellRenderer.cs b/Xamarin.Forms.Platform.Tizen/Cells/ImageCellRenderer.cs
index 9492e7c6..7bee5c8a 100644
--- a/Xamarin.Forms.Platform.Tizen/Cells/ImageCellRenderer.cs
+++ b/Xamarin.Forms.Platform.Tizen/Cells/ImageCellRenderer.cs
@@ -35,7 +35,7 @@ namespace Xamarin.Forms.Platform.Tizen
image.SetAlignment(-1.0, -1.0); // fill
image.SetWeight(1.0, 1.0); // expand
- image.LoadFromImageSourceAsync(imgCell.ImageSource);
+ var task = image.LoadFromImageSourceAsync(imgCell.ImageSource);
return image;
}
else