From a3b8fc76dffadeeba4bcc7412c89f1df3961bb40 Mon Sep 17 00:00:00 2001 From: Kangho Hur Date: Mon, 19 Dec 2016 14:10:29 +0900 Subject: [PATCH] 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(-) diff --git a/Xamarin.Forms.Platform.Tizen/Native/Label.cs b/Xamarin.Forms.Platform.Tizen/Native/Label.cs index cba2ba2..c07cce8 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) { -- 2.7.4