From: Kangho Hur Date: Thu, 29 Dec 2016 00:42:37 +0000 (+0900) Subject: Ignore TableView.SectionTitle if title is not set X-Git-Tag: accepted/tizen/common/20170324.122620~94 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=56357a6e197e859896936e69bbacc9ea4a377d77;p=platform%2Fupstream%2Fxamarin-forms.git Ignore TableView.SectionTitle if title is not set Change-Id: If62b127517d7ca3be8cd979ec2ec7a875a91658e --- diff --git a/Xamarin.Forms.Platform.Tizen/Native/TableView.cs b/Xamarin.Forms.Platform.Tizen/Native/TableView.cs index 73388a8..2a77299 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); } }