[NUI] Fix IsEnabledProperty name
authorSeungkeun Lee <sngn.lee@samsung.com>
Tue, 12 Apr 2022 08:49:51 +0000 (17:49 +0900)
committerJaehyun Cho <jaehyun0cho@gmail.com>
Wed, 20 Apr 2022 08:38:08 +0000 (17:38 +0900)
Fixes https://github.com/Samsung/TizenFX/issues/4112

src/Tizen.NUI/src/public/BaseComponents/ViewBindableProperty.cs

index 40f15c2..755671d 100755 (executable)
@@ -1203,7 +1203,7 @@ namespace Tizen.NUI.BaseComponents
         /// IsEnabledProperty
         /// </summary>
         [EditorBrowsable(EditorBrowsableState.Never)]
-        public static readonly BindableProperty IsEnabledProperty = BindableProperty.Create(nameof(Sensitive), typeof(bool), typeof(View), false, propertyChanged: (BindableProperty.BindingPropertyChangedDelegate)((bindable, oldValue, newValue) =>
+        public static readonly BindableProperty IsEnabledProperty = BindableProperty.Create(nameof(IsEnabled), typeof(bool), typeof(View), false, propertyChanged: (BindableProperty.BindingPropertyChangedDelegate)((bindable, oldValue, newValue) =>
         {
             var view = (View)bindable;
             if (newValue != null)