summaryrefslogtreecommitdiff
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-02-03 13:28:05 +0900
commitc55bd29896ab9d0d6ea234890b10c022c04eb947 (patch)
treeacbe1fc5a8f79645cc73434caca016f3d73d41de
parentf79da466036038a70024df15f404de89d887231d (diff)
downloadxamarin-forms-c55bd29896ab9d0d6ea234890b10c022c04eb947.tar.gz
xamarin-forms-c55bd29896ab9d0d6ea234890b10c022c04eb947.tar.bz2
xamarin-forms-c55bd29896ab9d0d6ea234890b10c022c04eb947.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>
-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();