From: huiyueun <35286162+huiyueun@users.noreply.github.com> Date: Mon, 20 Jan 2020 02:18:51 +0000 (+0900) Subject: [NUI] Fix FittingMode bug (#1319) X-Git-Tag: submit/tizen_5.5/20200206.005343~1^2~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=31894087855a25e8b0d0d673694d2b1087a15b9d;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [NUI] Fix FittingMode bug (#1319) Signed-off-by: huiyu.eun --- diff --git a/src/Tizen.NUI/src/public/BaseComponents/ImageView.cs b/src/Tizen.NUI/src/public/BaseComponents/ImageView.cs index 90d95ea..9b1ab64 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/ImageView.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/ImageView.cs @@ -783,7 +783,7 @@ namespace Tizen.NUI.BaseComponents } set { - UpdateImage(ImageVisualProperty.CropToMask, new PropertyValue((int)value)); + UpdateImage(ImageVisualProperty.FittingMode, new PropertyValue((int)value)); } }