From 7bb5e40b89d8da98c44c3d6ae447f81eb834aac5 Mon Sep 17 00:00:00 2001 From: Jiyun Yang Date: Tue, 6 Apr 2021 18:41:41 +0900 Subject: [PATCH] [NUI] Fix default value of VisualMap.Origin Signed-off-by: Jiyun Yang --- src/Tizen.NUI/src/public/Visuals/VisualMaps.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 { -- 2.7.4