summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen
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-07-10 11:11:14 +0900
commite256058ebfe61471235af417ed57b84e70272d9a (patch)
treef2832915f46fca69ab503ec1cce1ff7e4e62bc04 /Xamarin.Forms.Platform.Tizen
parent96ab7a4f8cc1c3690d7ea2e5bf7144e0cdf21ff2 (diff)
downloadxamarin-forms-e256058ebfe61471235af417ed57b84e70272d9a.tar.gz
xamarin-forms-e256058ebfe61471235af417ed57b84e70272d9a.tar.bz2
xamarin-forms-e256058ebfe61471235af417ed57b84e70272d9a.zip
Ignore TableView.SectionTitle if title is not set
Change-Id: If62b127517d7ca3be8cd979ec2ec7a875a91658e
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen')
-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);
}
}