From: Kangho Hur Date: Mon, 19 Dec 2016 05:10:29 +0000 (+0900) Subject: Remove horizontalPadding for Label to measure its width correctly X-Git-Tag: accepted/tizen/common/20170324.122620~104 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a3b8fc76dffadeeba4bcc7412c89f1df3961bb40;p=platform%2Fupstream%2Fxamarin-forms.git Remove horizontalPadding for Label to measure its width correctly Change-Id: I6b09e9dbb1996eef4751b13973145df72602fb2e --- 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) {