From 08e8cd00ec27a131ab7bf4e21263484b6bff5672 Mon Sep 17 00:00:00 2001 From: Kangho Hur Date: Mon, 19 Dec 2016 14:10:29 +0900 Subject: Remove horizontalPadding for Label to measure its width correctly Change-Id: I6b09e9dbb1996eef4751b13973145df72602fb2e --- Xamarin.Forms.Platform.Tizen/Native/Label.cs | 2 -- 1 file changed, 2 deletions(-) (limited to 'Xamarin.Forms.Platform.Tizen/Native') diff --git a/Xamarin.Forms.Platform.Tizen/Native/Label.cs b/Xamarin.Forms.Platform.Tizen/Native/Label.cs index cba2ba20..c07cce82 100644 --- a/Xamarin.Forms.Platform.Tizen/Native/Label.cs +++ b/Xamarin.Forms.Platform.Tizen/Native/Label.cs @@ -297,10 +297,8 @@ namespace Xamarin.Forms.Platform.Tizen.Native // Set bottom padding for lower case letters that have segments below the bottom line of text (g, j, p, q, y). var verticalPadding = (int)Math.Ceiling(0.05 * FontSize); - var horizontalPadding = (int)Math.Ceiling(0.2 * FontSize); rawSize.Height += verticalPadding; formattedSize.Height += verticalPadding; - formattedSize.Width += horizontalPadding; if (rawSize.Width > availableWidth) { -- cgit v1.2.3