[NUI] Fix typo in BorderlineColorSelectorProperty (#4549)
authorJaehyun Cho <jaehyun0cho@gmail.com>
Thu, 8 Sep 2022 01:34:42 +0000 (10:34 +0900)
committerJaehyun Cho <jaehyun0cho@gmail.com>
Thu, 8 Sep 2022 01:56:49 +0000 (10:56 +0900)
The typo in BorderlineColorSelectoryProperty has been fixed.
This typo causes crash by the following test code.

var slider = new Slider();
var style = slider.Style;

Co-authored-by: Jaehyun Cho <jae_hyun.cho@samsung.com>
src/Tizen.NUI/src/public/BaseComponents/Style/ViewStyleBindableProperty.cs

index df6649b..772c26b 100755 (executable)
@@ -416,7 +416,7 @@ namespace Tizen.NUI.BaseComponents
 
         /// <summary> Bindable property of BorderlineColorSelector. Do not open it. </summary>
         [EditorBrowsable(EditorBrowsableState.Never)]
-        public static readonly BindableProperty BorderlineColorSelectorProperty = BindableProperty.Create(nameof(BorderlineColor), typeof(Selector<Color>), typeof(ViewStyle), null, propertyChanged: (bindable, oldValue, newValue) =>
+        public static readonly BindableProperty BorderlineColorSelectorProperty = BindableProperty.Create(nameof(BorderlineColorSelector), typeof(Selector<Color>), typeof(ViewStyle), null, propertyChanged: (bindable, oldValue, newValue) =>
         {
             var viewStyle = (ViewStyle)bindable;