From: Jiyun Yang Date: Tue, 6 Apr 2021 09:41:41 +0000 (+0900) Subject: [NUI] Fix default value of VisualMap.Origin X-Git-Tag: citest_t1~127 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;ds=sidebyside;h=7bb5e40b89d8da98c44c3d6ae447f81eb834aac5;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [NUI] Fix default value of VisualMap.Origin Signed-off-by: Jiyun Yang --- diff --git a/src/Tizen.NUI/src/public/Visuals/VisualMaps.cs b/src/Tizen.NUI/src/public/Visuals/VisualMaps.cs index 9dc19ac..0208551 100755 --- a/src/Tizen.NUI/src/public/Visuals/VisualMaps.cs +++ b/src/Tizen.NUI/src/public/Visuals/VisualMaps.cs @@ -424,7 +424,7 @@ namespace Tizen.NUI /// /// Gets or sets the origin of the visual within its control area.
- /// By default, the origin is center.
+ /// By default, the origin is AlignType.TopBegin.
/// Optional. ///
/// 3 @@ -432,7 +432,7 @@ namespace Tizen.NUI { get { - return visualOrigin ?? (Visual.AlignType.Center); + return visualOrigin ?? (Visual.AlignType.TopBegin); } set { @@ -443,7 +443,7 @@ namespace Tizen.NUI /// /// Gets or sets the anchor point of the visual.
- /// By default, the anchor point is center.
+ /// By default, the anchor point is AlignType.TopBegin.
/// Optional. ///
/// 3 @@ -451,7 +451,7 @@ namespace Tizen.NUI { get { - return visualAnchorPoint ?? (Visual.AlignType.Center); + return visualAnchorPoint ?? (Visual.AlignType.TopBegin); } set {