summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen
diff options
context:
space:
mode:
authorPiotr Czaja <p.czaja@samsung.com>2017-04-11 14:51:30 +0200
committerKangho Hur <kangho.hur@samsung.com>2017-04-24 13:39:49 +0900
commit3e56204c5456e7795c2df2671b866d07295bffa5 (patch)
treeba2dd4cf13ecb0f3561d23ebfca4ace81bfbab0d /Xamarin.Forms.Platform.Tizen
parent52cbd66a8aebe893804b402b1025707d76415ea0 (diff)
downloadxamarin-forms-3e56204c5456e7795c2df2671b866d07295bffa5.tar.gz
xamarin-forms-3e56204c5456e7795c2df2671b866d07295bffa5.tar.bz2
xamarin-forms-3e56204c5456e7795c2df2671b866d07295bffa5.zip
[TableView] Fix updating HasUnevenRows property
Change-Id: Id16e3f6bb892980c6884a6388d31a25ce6cc1880 Signed-off-by: Piotr Czaja <p.czaja@samsung.com>
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen')
-rw-r--r--Xamarin.Forms.Platform.Tizen/Renderers/TableViewRenderer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Renderers/TableViewRenderer.cs b/Xamarin.Forms.Platform.Tizen/Renderers/TableViewRenderer.cs
index 59123549..c1a37916 100644
--- a/Xamarin.Forms.Platform.Tizen/Renderers/TableViewRenderer.cs
+++ b/Xamarin.Forms.Platform.Tizen/Renderers/TableViewRenderer.cs
@@ -67,7 +67,7 @@ namespace Xamarin.Forms.Platform.Tizen
void UpdateHasUnevenRows()
{
- //TODO Implement UnevenRows in ListView
+ Control.SetHasUnevenRows(Element.HasUnevenRows);
}
void UpdateRowHeight()