summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKangho Hur <kangho.hur@samsung.com>2016-12-29 09:42:37 +0900
committerKangho Hur <kangho.hur@samsung.com>2017-03-24 13:18:58 +0900
commit56357a6e197e859896936e69bbacc9ea4a377d77 (patch)
tree4172ee394665de23076c3ba38dc68964677b74ec
parent3d6909f8301aaed7cd0494fd4fc1bd681c2e3c95 (diff)
downloadxamarin-forms-56357a6e197e859896936e69bbacc9ea4a377d77.tar.gz
xamarin-forms-56357a6e197e859896936e69bbacc9ea4a377d77.tar.bz2
xamarin-forms-56357a6e197e859896936e69bbacc9ea4a377d77.zip
Ignore TableView.SectionTitle if title is not set
Change-Id: If62b127517d7ca3be8cd979ec2ec7a875a91658e
-rw-r--r--Xamarin.Forms.Platform.Tizen/Native/TableView.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Native/TableView.cs b/Xamarin.Forms.Platform.Tizen/Native/TableView.cs
index 73388a84..2a77299f 100644
--- a/Xamarin.Forms.Platform.Tizen/Native/TableView.cs
+++ b/Xamarin.Forms.Platform.Tizen/Native/TableView.cs
@@ -25,7 +25,8 @@ namespace Xamarin.Forms.Platform.Tizen.Native
Clear();
foreach (TableSection ts in root)
{
- AddSectionTitle(ts.Title);
+ if(!string.IsNullOrEmpty(ts.Title))
+ AddSectionTitle(ts.Title);
AddSource(ts);
}
}