diff options
author | rina6350.you <rina6350.you@samsung.com> | 2017-06-16 20:26:01 +0900 |
---|---|---|
committer | Kangho Hur <kangho.hur@samsung.com> | 2017-07-10 11:11:27 +0900 |
commit | 7b35d0ad9c9f0441d11e7d15c37e4ce3cff1e7f5 (patch) | |
tree | bc9023ca20eb3f272992f4ce8c8932a9e8ea027d /Xamarin.Forms.Platform.Tizen/Native/Label.cs | |
parent | 7be2733abe891f4aa814e9f1cbea10e31358f56d (diff) | |
download | xamarin-forms-7b35d0ad9c9f0441d11e7d15c37e4ce3cff1e7f5.tar.gz xamarin-forms-7b35d0ad9c9f0441d11e7d15c37e4ce3cff1e7f5.tar.bz2 xamarin-forms-7b35d0ad9c9f0441d11e7d15c37e4ce3cff1e7f5.zip |
Fixed the LineBreakMode issue
- temporary way
Change-Id: I3d3ddca8b54e0225172af84c1d6a296a302530bd
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/Native/Label.cs')
-rwxr-xr-x[-rw-r--r--] | Xamarin.Forms.Platform.Tizen/Native/Label.cs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Native/Label.cs b/Xamarin.Forms.Platform.Tizen/Native/Label.cs index 8d095363..b508b21e 100644..100755 --- a/Xamarin.Forms.Platform.Tizen/Native/Label.cs +++ b/Xamarin.Forms.Platform.Tizen/Native/Label.cs @@ -235,10 +235,7 @@ namespace Xamarin.Forms.Platform.Tizen.Native IsEllipsis = true; break; } - if (IsEllipsis || previousMode >= LineBreakMode.HeadTruncation) - { - ApplyTextAndStyle(); - } + ApplyTextAndStyle(); } } } |