summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);
}
}