Skip to content

Commit

Permalink
Correct word spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
Deng Aolin committed Mar 13, 2023
1 parent e7151b2 commit 920b049
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Fluent.Ribbon/Controls/ComboBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -658,10 +658,10 @@ protected override void OnDropDownOpened(EventArgs e)

if (this.SelectedItem is not null)
{
var selectedItemContainser = this.ItemContainerGenerator.ContainerOrContainerContentFromItem<IInputElement>(this.SelectedItem);
if (selectedItemContainser is not null)
var selectedItemContainer = this.ItemContainerGenerator.ContainerOrContainerContentFromItem<IInputElement>(this.SelectedItem);
if (selectedItemContainer is not null)
{
Keyboard.Focus(selectedItemContainser);
Keyboard.Focus(selectedItemContainer);
}
}

Expand Down

0 comments on commit 920b049

Please sign in to comment.