From: tarun.mahay Date: Wed, 2 Nov 2022 06:34:12 +0000 (+0530) Subject: Fixing issue of corner radius X-Git-Tag: accepted/tizen/unified/20221115.022416~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9a71431abbeca4df955d6713e8d68d788161f76f;p=profile%2Fiot%2Fapps%2Fdotnet%2Ftray.git Fixing issue of corner radius Change-Id: I7940e9d9f83c300ba9ecc5e07471ef206a2fe005 Signed-off-by: tarun.mahay --- diff --git a/Apps/Models/AppInfoModel.cs b/Apps/Models/AppInfoModel.cs index 0903e24..6a9ed25 100755 --- a/Apps/Models/AppInfoModel.cs +++ b/Apps/Models/AppInfoModel.cs @@ -58,6 +58,7 @@ namespace Apps.Models defaultVisual = new ImageVisual() { URL = Resources.GetImagePath() + "default_gradient.png", + CornerRadius = new Vector4(12, 12, 12, 12), }; } @@ -69,6 +70,7 @@ namespace Apps.Models EndPosition = new Vector2(0.0f, 1.0f), StopColor = stopColor, SpreadMethod = GradientVisualSpreadMethodType.Pad, + CornerRadius = new Vector4(12, 12, 12, 12), }; } diff --git a/TrayApplication/Models/AppInfoModel.cs b/TrayApplication/Models/AppInfoModel.cs index b16ef18..a908212 100755 --- a/TrayApplication/Models/AppInfoModel.cs +++ b/TrayApplication/Models/AppInfoModel.cs @@ -90,6 +90,7 @@ namespace TrayApplication.Models defaultVisual = new ImageVisual() { URL = Resources.GetImagePath() + "default_gradient.png", + CornerRadius = new Vector4(12, 12, 12, 12), }; } @@ -101,6 +102,7 @@ namespace TrayApplication.Models EndPosition = new Vector2(0.0f, 1.0f), StopColor = stopColor, SpreadMethod = GradientVisualSpreadMethodType.Pad, + CornerRadius = new Vector4(12, 12, 12, 12), }; } diff --git a/packaging/org.tizen.Apps-1.0.0.tpk b/packaging/org.tizen.Apps-1.0.0.tpk index 8064a0e..0cf6160 100755 Binary files a/packaging/org.tizen.Apps-1.0.0.tpk and b/packaging/org.tizen.Apps-1.0.0.tpk differ diff --git a/packaging/org.tizen.TrayApplication-1.0.0.tpk b/packaging/org.tizen.TrayApplication-1.0.0.tpk index 00c1551..5013a08 100755 Binary files a/packaging/org.tizen.TrayApplication-1.0.0.tpk and b/packaging/org.tizen.TrayApplication-1.0.0.tpk differ