From 90d00ab55886944707b957e66b1f826a9f4a2e3f Mon Sep 17 00:00:00 2001 From: Seungkeun Lee Date: Tue, 12 Apr 2022 17:49:51 +0900 Subject: [PATCH] [NUI] Fix IsEnabledProperty name Fixes https://github.com/Samsung/TizenFX/issues/4112 --- src/Tizen.NUI/src/public/BaseComponents/ViewBindableProperty.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tizen.NUI/src/public/BaseComponents/ViewBindableProperty.cs b/src/Tizen.NUI/src/public/BaseComponents/ViewBindableProperty.cs index 40f15c2..755671d 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/ViewBindableProperty.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/ViewBindableProperty.cs @@ -1203,7 +1203,7 @@ namespace Tizen.NUI.BaseComponents /// IsEnabledProperty /// [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) -- 2.7.4