summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Native/Span.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/Native/Span.cs')
-rwxr-xr-x[-rw-r--r--]Xamarin.Forms.Platform.Tizen/Native/Span.cs10
1 files changed, 8 insertions, 2 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Native/Span.cs b/Xamarin.Forms.Platform.Tizen/Native/Span.cs
index 3b410ba1..3ffea252 100644..100755
--- a/Xamarin.Forms.Platform.Tizen/Native/Span.cs
+++ b/Xamarin.Forms.Platform.Tizen/Native/Span.cs
@@ -244,12 +244,18 @@ namespace Xamarin.Forms.Platform.Tizen.Native
case LineBreakMode.TailTruncation:
_formattingString.Append("ellipsis=1.0");
break;
-
- case LineBreakMode.NoWrap:
case LineBreakMode.CharacterWrap:
+ _formattingString.Append("wrap=char");
+ break;
case LineBreakMode.WordWrap:
+ _formattingString.Append("wrap=word");
+ break;
case LineBreakMode.MixedWrap:
+ _formattingString.Append("wrap=mixed");
+ break;
+ case LineBreakMode.NoWrap:
case LineBreakMode.None:
+ _formattingString.Append("wrap=none");
break;
}