Skip to content

Commit

Permalink
Fix obsoletion warning
Browse files Browse the repository at this point in the history
  • Loading branch information
bdach committed Jun 6, 2024
1 parent 7a8a37d commit dd9c77d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ private void setAdditionBankViaPopover(string bank) => AddStep($"set addition ba
textBox.Current.Value = bank;
// force a commit via keyboard.
// this is needed when testing attempting to set empty bank - which should revert to the previous value, but only on commit.
InputManager.ChangeFocus(textBox);
((IFocusManager)InputManager).ChangeFocus(textBox);
InputManager.Key(Key.Enter);
});

Expand Down

0 comments on commit dd9c77d

Please sign in to comment.