Skip to content
This repository was archived by the owner on May 1, 2024. It is now read-only.

Commit 651b275

Browse files
authored
Fix SearchHandler.SetIsFocused (#11895) fixes #11894
1 parent 1bae35d commit 651b275

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Xamarin.Forms.Core/Shell/SearchHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ static void OnIsFocusedPropertyChanged(BindableObject bindable, object oldvalue,
5050
[EditorBrowsable(EditorBrowsableState.Never)]
5151
public void SetIsFocused(bool value)
5252
{
53-
SetValueCore(IsFocusedPropertyKey.BindableProperty, value);
53+
SetValueCore(IsFocusedPropertyKey, value);
5454
}
5555
[EditorBrowsable(EditorBrowsableState.Never)]
5656
public event EventHandler<FocusRequestArgs> FocusChangeRequested;

0 commit comments

Comments
 (0)