summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Native
diff options
context:
space:
mode:
authorSeungkeun Lee <sngn.lee@samsung.com>2017-01-04 14:01:48 +0900
committerKangho Hur <kangho.hur@samsung.com>2017-07-10 11:11:15 +0900
commit2d09902a133c2ed9c302569a2c63bfedef5edd30 (patch)
treecb16e863318b2d7880a26099643ce11f42e912b7 /Xamarin.Forms.Platform.Tizen/Native
parent95fb4a12465fb74ddb0c4a988ef9e71bbcbbb954 (diff)
downloadxamarin-forms-2d09902a133c2ed9c302569a2c63bfedef5edd30.tar.gz
xamarin-forms-2d09902a133c2ed9c302569a2c63bfedef5edd30.tar.bz2
xamarin-forms-2d09902a133c2ed9c302569a2c63bfedef5edd30.zip
Support Density Independent Pixel on FontSize
- FontSize on Span was use DP unit Change-Id: I1a0a50dbeae3ede0c61a67f60f7238631684537d
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/Native')
-rw-r--r--Xamarin.Forms.Platform.Tizen/Native/Span.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Native/Span.cs b/Xamarin.Forms.Platform.Tizen/Native/Span.cs
index 7ac4134f..0e3f0000 100644
--- a/Xamarin.Forms.Platform.Tizen/Native/Span.cs
+++ b/Xamarin.Forms.Platform.Tizen/Native/Span.cs
@@ -175,7 +175,7 @@ namespace Xamarin.Forms.Platform.Tizen.Native
if (FontSize != -1)
{
- _formattingString.AppendFormat("font_size={0} ", FontSize);
+ _formattingString.AppendFormat("font_size={0} ", Forms.ConvertToPixel(FontSize));
}
if ((FontAttributes & FontAttributes.Bold) != 0)