summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen
diff options
context:
space:
mode:
authorchungryeol lim <cdark.lim@samsung.com>2017-01-19 19:04:47 +0900
committerKangho Hur <kangho.hur@samsung.com>2017-03-24 13:19:00 +0900
commit7390e00a9f574a066e343489f645f077d8cd0d84 (patch)
tree0e5409387df2ae2e904d9dd99686f3d37416e471 /Xamarin.Forms.Platform.Tizen
parentd410efaecffd8e6f9b0678317c9e0280e30cc02e (diff)
downloadxamarin-forms-7390e00a9f574a066e343489f645f077d8cd0d84.tar.gz
xamarin-forms-7390e00a9f574a066e343489f645f077d8cd0d84.tar.bz2
xamarin-forms-7390e00a9f574a066e343489f645f077d8cd0d84.zip
Fixed DisplayAlert message color issue
- Change the default color of message color to black Change-Id: Id9b7f74c0ecdc222bb46a9ecc6e4464cb6601cc7 Signed-off-by: chungryeol lim <cdark.lim@samsung.com>
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen')
-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 32ef3c38..fe8c4fd5 100644
--- a/Xamarin.Forms.Platform.Tizen/FormsApplication.cs
+++ b/Xamarin.Forms.Platform.Tizen/FormsApplication.cs
@@ -169,7 +169,7 @@ namespace Xamarin.Forms.Platform.Tizen
alert.Title = arguments.Title;
var label = new ELabel(alert)
{
- Text = "<span font_size=30 >" + arguments.Message + "<\\span>",
+ Text = "<span font_size=30 color=#000000>" + arguments.Message + "<\\span>",
};
label.Show();