summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/FormsApplication.cs
diff options
context:
space:
mode:
authorKangho Hur <kangho.hur@samsung.com>2017-04-27 11:07:45 +0900
committerKangho Hur <kangho.hur@samsung.com>2017-04-27 11:07:45 +0900
commit949046ea81ddacd06c2dff2241c344331c570f68 (patch)
treefce886eec158b5e6c216dc3c9e1413b90c6d92ec /Xamarin.Forms.Platform.Tizen/FormsApplication.cs
parent934b974f25ef0b7149777ea4fb2657dc6c40e186 (diff)
downloadxamarin-forms-949046ea81ddacd06c2dff2241c344331c570f68.tar.gz
xamarin-forms-949046ea81ddacd06c2dff2241c344331c570f68.tar.bz2
xamarin-forms-949046ea81ddacd06c2dff2241c344331c570f68.zip
Set text align of Popup'label to middle as default
- this is from UX requirments. Change-Id: I0477f37a2dd167be45113c9e97adf0c0cc9ebf31
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/FormsApplication.cs')
-rw-r--r--Xamarin.Forms.Platform.Tizen/FormsApplication.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/FormsApplication.cs b/Xamarin.Forms.Platform.Tizen/FormsApplication.cs
index e00c3908..0b8db94e 100644
--- a/Xamarin.Forms.Platform.Tizen/FormsApplication.cs
+++ b/Xamarin.Forms.Platform.Tizen/FormsApplication.cs
@@ -171,7 +171,7 @@ namespace Xamarin.Forms.Platform.Tizen
var message = arguments.Message.Replace("&", "&amp;").Replace("<", "&lt;").Replace(">", "&gt;").Replace(Environment.NewLine, "<br>");
var label = new ELabel(alert)
{
- Text = "<span font_size=30 color=#000000>" + message + "<\\span>",
+ Text = "<span font_size=30 color=#000000 align=center>" + message + "<\\span>",
};
label.Show();